home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / gcc258s.zoo / c-parse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-30  |  128.6 KB  |  3,479 lines

  1.  
  2. /*  A Bison parser, made from c-parse.y with Bison version GNU Bison version 1.20
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    STRUCT    268
  18. #define    UNION    269
  19. #define    IF    270
  20. #define    ELSE    271
  21. #define    WHILE    272
  22. #define    DO    273
  23. #define    FOR    274
  24. #define    SWITCH    275
  25. #define    CASE    276
  26. #define    DEFAULT    277
  27. #define    BREAK    278
  28. #define    CONTINUE    279
  29. #define    RETURN    280
  30. #define    GOTO    281
  31. #define    ASM_KEYWORD    282
  32. #define    TYPEOF    283
  33. #define    ALIGNOF    284
  34. #define    ALIGN    285
  35. #define    ATTRIBUTE    286
  36. #define    EXTENSION    287
  37. #define    LABEL    288
  38. #define    REALPART    289
  39. #define    IMAGPART    290
  40. #define    ASSIGN    291
  41. #define    OROR    292
  42. #define    ANDAND    293
  43. #define    EQCOMPARE    294
  44. #define    ARITHCOMPARE    295
  45. #define    LSHIFT    296
  46. #define    RSHIFT    297
  47. #define    UNARY    298
  48. #define    PLUSPLUS    299
  49. #define    MINUSMINUS    300
  50. #define    HYPERUNARY    301
  51. #define    POINTSAT    302
  52. #define    INTERFACE    303
  53. #define    IMPLEMENTATION    304
  54. #define    END    305
  55. #define    SELECTOR    306
  56. #define    DEFS    307
  57. #define    ENCODE    308
  58. #define    CLASSNAME    309
  59. #define    PUBLIC    310
  60. #define    PRIVATE    311
  61. #define    PROTECTED    312
  62. #define    PROTOCOL    313
  63. #define    OBJECTNAME    314
  64. #define    CLASS    315
  65. #define    ALIAS    316
  66. #define    OBJC_STRING    317
  67.  
  68. #line 44 "c-parse.y"
  69.  
  70. #include <stdio.h>
  71. #include <errno.h>
  72. #include <setjmp.h>
  73.  
  74. #include "config.h"
  75. #include "tree.h"
  76. #include "input.h"
  77. #include "c-lex.h"
  78. #include "c-tree.h"
  79. #include "flags.h"
  80.  
  81. #ifdef MULTIBYTE_CHARS
  82. #include <stdlib.h>
  83. #include <locale.h>
  84. #endif
  85.  
  86.  
  87. /* Since parsers are distinct for each language, put the language string
  88.    definition here.  */
  89. char *language_string = "GNU C";
  90.  
  91. #ifndef errno
  92. extern int errno;
  93. #endif
  94.  
  95. void yyerror ();
  96.  
  97. /* Like YYERROR but do call yyerror.  */
  98. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  99.  
  100. /* Cause the `yydebug' variable to be defined.  */
  101. #define YYDEBUG 1
  102.  
  103. #line 81 "c-parse.y"
  104. typedef union {long itype; tree ttype; enum tree_code code;
  105.     char *filename; int lineno; } YYSTYPE;
  106. #line 192 "c-parse.y"
  107.  
  108. /* Number of statements (loosely speaking) seen so far.  */
  109. static int stmt_count;
  110.  
  111. /* Input file and line number of the end of the body of last simple_if;
  112.    used by the stmt-rule immediately after simple_if returns.  */
  113. static char *if_stmt_file;
  114. static int if_stmt_line;
  115.  
  116. /* List of types and structure classes of the current declaration.  */
  117. static tree current_declspecs;
  118.  
  119. /* Stack of saved values of current_declspecs.  */
  120. static tree declspec_stack;
  121.  
  122. /* 1 if we explained undeclared var errors.  */
  123. static int undeclared_variable_notice;
  124.  
  125.  
  126. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  127.  
  128. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  129. extern void yyprint ();
  130.  
  131. #ifndef YYLTYPE
  132. typedef
  133.   struct yyltype
  134.     {
  135.       int timestamp;
  136.       int first_line;
  137.       int first_column;
  138.       int last_line;
  139.       int last_column;
  140.       char *text;
  141.    }
  142.   yyltype;
  143.  
  144. #define YYLTYPE yyltype
  145. #endif
  146.  
  147. #include <stdio.h>
  148.  
  149. #ifndef __cplusplus
  150. #ifndef __STDC__
  151. #define const
  152. #endif
  153. #endif
  154.  
  155.  
  156.  
  157. #define    YYFINAL        619
  158. #define    YYFLAG        -32768
  159. #define    YYNTBASE    85
  160.  
  161. #define YYTRANSLATE(x) ((unsigned)(x) <= 317 ? yytranslate[x] : 221)
  162.  
  163. static const char yytranslate[] = {     0,
  164.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  165.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  166.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  167.      2,     2,    81,     2,     2,     2,    53,    44,     2,    60,
  168.     77,    51,    49,    82,    50,    59,    52,     2,     2,     2,
  169.      2,     2,     2,     2,     2,     2,     2,    39,    78,     2,
  170.     37,     2,    38,     2,     2,     2,     2,     2,     2,     2,
  171.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  172.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  173.     61,     2,    84,    43,     2,     2,     2,     2,     2,     2,
  174.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  175.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  176.      2,     2,    83,    42,    79,    80,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  178.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  179.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  180.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  181.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  182.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  185.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  186.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  187.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  188.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  189.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  190.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  191.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  192.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  193.     36,    40,    41,    45,    46,    47,    48,    54,    55,    56,
  194.     57,    58,    62,    63,    64,    65,    66,    67,    68,    69,
  195.     70,    71,    72,    73,    74,    75,    76
  196. };
  197.  
  198. #if YYDEBUG != 0
  199. static const short yyprhs[] = {     0,
  200.      0,     1,     3,     4,     7,     8,    12,    14,    16,    22,
  201.     26,    31,    36,    39,    42,    45,    48,    50,    51,    52,
  202.     60,    65,    66,    67,    75,    80,    81,    82,    89,    93,
  203.     95,    97,    99,   101,   103,   105,   107,   109,   111,   113,
  204.    114,   116,   118,   122,   124,   127,   128,   132,   135,   138,
  205.    141,   146,   149,   154,   157,   160,   162,   167,   168,   176,
  206.    178,   182,   186,   190,   194,   198,   202,   206,   210,   214,
  207.    218,   222,   226,   230,   234,   240,   244,   248,   250,   252,
  208.    254,   258,   262,   263,   268,   273,   278,   282,   286,   289,
  209.    292,   294,   297,   298,   300,   303,   307,   309,   311,   314,
  210.    317,   322,   327,   330,   333,   337,   339,   341,   344,   347,
  211.    348,   353,   358,   362,   366,   369,   372,   375,   379,   380,
  212.    383,   386,   388,   390,   393,   396,   399,   403,   404,   407,
  213.    409,   411,   413,   418,   423,   425,   427,   429,   431,   435,
  214.    437,   441,   442,   447,   448,   455,   459,   460,   467,   471,
  215.    472,   479,   481,   485,   487,   489,   494,   499,   508,   510,
  216.    511,   516,   518,   519,   522,   524,   528,   530,   531,   536,
  217.    538,   539,   548,   549,   556,   557,   562,   563,   569,   570,
  218.    574,   575,   579,   581,   583,   587,   591,   596,   600,   604,
  219.    606,   610,   615,   619,   623,   625,   629,   633,   637,   642,
  220.    646,   648,   649,   656,   661,   664,   665,   672,   677,   680,
  221.    681,   689,   690,   697,   700,   701,   703,   704,   706,   708,
  222.    711,   712,   716,   719,   723,   725,   729,   731,   733,   735,
  223.    739,   744,   751,   757,   759,   763,   765,   769,   772,   775,
  224.    776,   778,   780,   783,   784,   787,   791,   795,   798,   802,
  225.    807,   811,   814,   818,   821,   823,   826,   829,   830,   832,
  226.    835,   836,   837,   839,   841,   844,   848,   850,   853,   856,
  227.    863,   869,   875,   878,   881,   886,   887,   892,   893,   894,
  228.    898,   903,   907,   909,   911,   913,   915,   918,   919,   924,
  229.    926,   930,   931,   932,   940,   946,   949,   950,   951,   952,
  230.    965,   966,   973,   976,   979,   982,   986,   993,  1002,  1013,
  231.   1026,  1030,  1035,  1037,  1039,  1040,  1047,  1051,  1057,  1060,
  232.   1063,  1064,  1066,  1067,  1069,  1070,  1072,  1074,  1078,  1083,
  233.   1085,  1089,  1090,  1093,  1096,  1097,  1102,  1105,  1106,  1108,
  234.   1110,  1114,  1116,  1120,  1123,  1126,  1129,  1132,  1135,  1136,
  235.   1139,  1141,  1144,  1146,  1150,  1152
  236. };
  237.  
  238. static const short yyrhs[] = {    -1,
  239.     86,     0,     0,    87,    89,     0,     0,    86,    88,    89,
  240.      0,    91,     0,    90,     0,    27,    60,   100,    77,    78,
  241.      0,   117,   127,    78,     0,   121,   117,   127,    78,     0,
  242.    119,   117,   126,    78,     0,   121,    78,     0,   119,    78,
  243.      0,     1,    78,     0,     1,    79,     0,    78,     0,     0,
  244.      0,   119,   117,   150,    92,   111,    93,   180,     0,   119,
  245.    117,   150,     1,     0,     0,     0,   121,   117,   153,    94,
  246.    111,    95,   180,     0,   121,   117,   153,     1,     0,     0,
  247.      0,   117,   153,    96,   111,    97,   180,     0,   117,   153,
  248.      1,     0,     3,     0,     4,     0,    44,     0,    50,     0,
  249.     49,     0,    55,     0,    56,     0,    80,     0,    81,     0,
  250.    102,     0,     0,   102,     0,   107,     0,   102,    82,   107,
  251.      0,   108,     0,    51,   105,     0,     0,    32,   104,   105,
  252.      0,    99,   105,     0,    41,    98,     0,    11,   103,     0,
  253.     11,    60,   168,    77,     0,    29,   103,     0,    29,    60,
  254.    168,    77,     0,    34,   105,     0,    35,   105,     0,   103,
  255.      0,    60,   168,    77,   105,     0,     0,    60,   168,    77,
  256.     83,   106,   138,    79,     0,   105,     0,   107,    49,   107,
  257.      0,   107,    50,   107,     0,   107,    51,   107,     0,   107,
  258.     52,   107,     0,   107,    53,   107,     0,   107,    47,   107,
  259.      0,   107,    48,   107,     0,   107,    46,   107,     0,   107,
  260.     45,   107,     0,   107,    44,   107,     0,   107,    42,   107,
  261.      0,   107,    43,   107,     0,   107,    41,   107,     0,   107,
  262.     40,   107,     0,   107,    38,   204,    39,   107,     0,   107,
  263.     37,   107,     0,   107,    36,   107,     0,     3,     0,     8,
  264.      0,   110,     0,    60,   100,    77,     0,    60,     1,    77,
  265.      0,     0,    60,   109,   181,    77,     0,   108,    60,   101,
  266.     77,     0,   108,    61,   100,    84,     0,   108,    59,    98,
  267.      0,   108,    58,    98,     0,   108,    55,     0,   108,    56,
  268.      0,     9,     0,   110,     9,     0,     0,   113,     0,   113,
  269.     10,     0,   186,   187,   114,     0,   112,     0,   175,     0,
  270.    113,   112,     0,   112,   175,     0,   119,   117,   126,    78,
  271.      0,   121,   117,   127,    78,     0,   119,    78,     0,   121,
  272.     78,     0,   186,   187,   118,     0,   115,     0,   175,     0,
  273.    116,   115,     0,   115,   175,     0,     0,   119,   117,   126,
  274.     78,     0,   121,   117,   127,    78,     0,   119,   117,   146,
  275.      0,   121,   117,   148,     0,   119,    78,     0,   121,    78,
  276.      0,   124,   120,     0,   121,   124,   120,     0,     0,   120,
  277.    125,     0,   120,     5,     0,     7,     0,     5,     0,   121,
  278.      7,     0,   121,     5,     0,   124,   123,     0,   170,   124,
  279.    123,     0,     0,   123,   125,     0,     6,     0,   154,     0,
  280.      4,     0,    28,    60,   100,    77,     0,    28,    60,   168,
  281.     77,     0,     6,     0,     7,     0,   154,     0,   129,     0,
  282.    126,    82,   129,     0,   131,     0,   127,    82,   129,     0,
  283.      0,    27,    60,   110,    77,     0,     0,   150,   128,   133,
  284.     37,   130,   136,     0,   150,   128,   133,     0,     0,   153,
  285.    128,   133,    37,   132,   136,     0,   153,   128,   133,     0,
  286.      0,    31,    60,    60,   134,    77,    77,     0,   135,     0,
  287.    134,    82,   135,     0,     3,     0,     7,     0,     3,    60,
  288.      3,    77,     0,     3,    60,     8,    77,     0,     3,    60,
  289.      3,    82,     8,    82,     8,    77,     0,   107,     0,     0,
  290.     83,   137,   138,    79,     0,     1,     0,     0,   139,   159,
  291.      0,   140,     0,   139,    82,   140,     0,   107,     0,     0,
  292.     83,   141,   138,    79,     0,     1,     0,     0,    61,   107,
  293.     10,   107,    84,    37,   142,   140,     0,     0,    61,   107,
  294.     84,    37,   143,   140,     0,     0,    98,    39,   144,   140,
  295.      0,     0,    59,    98,    37,   145,   140,     0,     0,   150,
  296.    147,   181,     0,     0,   153,   149,   181,     0,   151,     0,
  297.    153,     0,    60,   151,    77,     0,   151,    60,   216,     0,
  298.    151,    61,   100,    84,     0,   151,    61,    84,     0,    51,
  299.    171,   151,     0,     4,     0,   152,    60,   216,     0,   152,
  300.     61,   100,    84,     0,   152,    61,    84,     0,    51,   171,
  301.    152,     0,     4,     0,   153,    60,   216,     0,    60,   153,
  302.     77,     0,    51,   171,   153,     0,   153,    61,   100,    84,
  303.      0,   153,    61,    84,     0,     3,     0,     0,    13,    98,
  304.     83,   155,   161,    79,     0,    13,    83,   161,    79,     0,
  305.     13,    98,     0,     0,    14,    98,    83,   156,   161,    79,
  306.      0,    14,    83,   161,    79,     0,    14,    98,     0,     0,
  307.     12,    98,    83,   157,   166,   160,    79,     0,     0,    12,
  308.     83,   158,   166,   160,    79,     0,    12,    98,     0,     0,
  309.     82,     0,     0,    82,     0,   162,     0,   162,   163,     0,
  310.      0,   162,   163,    78,     0,   162,    78,     0,   122,   117,
  311.    164,     0,   122,     0,   170,   117,   164,     0,   170,     0,
  312.      1,     0,   165,     0,   164,    82,   165,     0,   186,   187,
  313.    150,   133,     0,   186,   187,   150,    39,   107,   133,     0,
  314.    186,   187,    39,   107,   133,     0,   167,     0,   166,    82,
  315.    167,     0,    98,     0,    98,    37,   107,     0,   122,   169,
  316.      0,   170,   169,     0,     0,   172,     0,     7,     0,   170,
  317.      7,     0,     0,   171,     7,     0,    60,   172,    77,     0,
  318.     51,   171,   172,     0,    51,   171,     0,   172,    60,   209,
  319.      0,   172,    61,   100,    84,     0,   172,    61,    84,     0,
  320.     60,   209,     0,    61,   100,    84,     0,    61,    84,     0,
  321.    189,     0,   173,   189,     0,   173,   175,     0,     0,   173,
  322.      0,     1,    78,     0,     0,     0,   178,     0,   179,     0,
  323.    178,   179,     0,    33,   220,    78,     0,   181,     0,     1,
  324.    181,     0,    83,    79,     0,    83,   176,   177,   116,   174,
  325.     79,     0,    83,   176,   177,     1,    79,     0,    83,   176,
  326.    177,   173,    79,     0,   183,   188,     0,   183,     1,     0,
  327.     15,    60,   100,    77,     0,     0,    18,   185,   188,    17,
  328.      0,     0,     0,   186,   187,   191,     0,   186,   187,   202,
  329.    188,     0,   186,   187,   190,     0,   191,     0,   202,     0,
  330.    181,     0,   199,     0,   100,    78,     0,     0,   182,    16,
  331.    192,   188,     0,   182,     0,   182,    16,     1,     0,     0,
  332.      0,    17,   193,    60,   100,    77,   194,   188,     0,   184,
  333.     60,   100,    77,    78,     0,   184,     1,     0,     0,     0,
  334.      0,    19,    60,   204,    78,   195,   204,    78,   196,   204,
  335.     77,   197,   188,     0,     0,    20,    60,   100,    77,   198,
  336.    188,     0,    23,    78,     0,    24,    78,     0,    25,    78,
  337.      0,    25,   100,    78,     0,    27,   203,    60,   100,    77,
  338.     78,     0,    27,   203,    60,   100,    39,   205,    77,    78,
  339.      0,    27,   203,    60,   100,    39,   205,    39,   205,    77,
  340.     78,     0,    27,   203,    60,   100,    39,   205,    39,   205,
  341.     39,   208,    77,    78,     0,    26,    98,    78,     0,    26,
  342.     51,   100,    78,     0,    78,     0,   200,     0,     0,    19,
  343.     60,   108,    77,   201,   188,     0,    21,   107,    39,     0,
  344.     21,   107,    10,   107,    39,     0,    22,    39,     0,    98,
  345.     39,     0,     0,     7,     0,     0,   100,     0,     0,   206,
  346.      0,   207,     0,   206,    82,   207,     0,     9,    60,   100,
  347.     77,     0,   110,     0,   208,    82,   110,     0,     0,   210,
  348.    211,     0,   213,    77,     0,     0,   214,    78,   212,   211,
  349.      0,     1,    77,     0,     0,    10,     0,   214,     0,   214,
  350.     82,    10,     0,   215,     0,   214,    82,   215,     0,   119,
  351.    152,     0,   119,   153,     0,   119,   169,     0,   121,   153,
  352.      0,   121,   169,     0,     0,   217,   218,     0,   211,     0,
  353.    219,    77,     0,     3,     0,   219,    82,     3,     0,    98,
  354.      0,   220,    82,    98,     0
  355. };
  356.  
  357. #endif
  358.  
  359. #if YYDEBUG != 0
  360. static const short yyrline[] = { 0,
  361.    218,   222,   235,   237,   237,   238,   240,   242,   243,   253,
  362.    259,   261,   263,   265,   267,   268,   269,   274,   280,   282,
  363.    283,   285,   290,   292,   293,   295,   300,   302,   303,   307,
  364.    309,   312,   314,   316,   318,   320,   322,   324,   328,   332,
  365.    335,   338,   341,   345,   347,   350,   353,   356,   360,   386,
  366.    391,   393,   395,   397,   399,   403,   405,   408,   412,   439,
  367.    441,   443,   445,   447,   449,   451,   453,   455,   457,   459,
  368.    461,   463,   465,   467,   469,   471,   474,   480,   581,   582,
  369.    584,   590,   592,   606,   629,   631,   633,   637,   643,   645,
  370.    650,   652,   657,   659,   660,   670,   675,   677,   678,   679,
  371.    682,   687,   691,   694,   702,   707,   709,   710,   711,   718,
  372.    726,   731,   735,   739,   743,   745,   753,   756,   760,   762,
  373.    764,   775,   779,   781,   784,   797,   800,   804,   806,   814,
  374.    815,   816,   820,   822,   828,   829,   830,   833,   835,   838,
  375.    840,   843,   846,   852,   859,   862,   868,   875,   878,   885,
  376.    888,   893,   895,   900,   906,   907,   917,   928,   948,   950,
  377.    955,   962,   967,   971,   974,   976,   981,   984,   986,   988,
  378.    992,   995,   995,   998,   998,  1001,  1001,  1004,  1006,  1023,
  379.   1027,  1044,  1051,  1053,  1058,  1061,  1066,  1068,  1070,  1072,
  380.   1080,  1086,  1088,  1090,  1092,  1098,  1104,  1106,  1108,  1110,
  381.   1112,  1115,  1120,  1124,  1127,  1129,  1131,  1133,  1136,  1138,
  382.   1141,  1144,  1147,  1150,  1154,  1156,  1159,  1161,  1165,  1168,
  383.   1173,  1175,  1177,  1191,  1197,  1202,  1207,  1212,  1216,  1218,
  384.   1222,  1226,  1230,  1240,  1242,  1247,  1250,  1254,  1257,  1261,
  385.   1264,  1267,  1270,  1274,  1277,  1281,  1285,  1287,  1289,  1291,
  386.   1293,  1295,  1297,  1299,  1307,  1309,  1310,  1313,  1315,  1318,
  387.   1321,  1332,  1334,  1339,  1341,  1344,  1358,  1361,  1364,  1366,
  388.   1371,  1376,  1384,  1389,  1392,  1405,  1413,  1417,  1421,  1425,
  389.   1431,  1435,  1440,  1442,  1453,  1456,  1457,  1474,  1479,  1482,
  390.   1493,  1495,  1505,  1515,  1516,  1524,  1527,  1539,  1543,  1560,
  391.   1567,  1576,  1578,  1583,  1588,  1592,  1596,  1607,  1614,  1621,
  392.   1628,  1639,  1643,  1646,  1651,  1674,  1705,  1730,  1759,  1774,
  393.   1785,  1789,  1793,  1796,  1801,  1803,  1806,  1808,  1812,  1817,
  394.   1820,  1826,  1831,  1836,  1838,  1847,  1848,  1854,  1856,  1861,
  395.   1863,  1867,  1870,  1876,  1879,  1881,  1883,  1885,  1892,  1897,
  396.   1902,  1904,  1913,  1916,  1921,  1924
  397. };
  398.  
  399. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  400. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  401. "ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
  402. "BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ALIGN",
  403. "ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'",
  404. "OROR","ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT",
  405. "'+'","'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
  406. "'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
  407. "CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
  408. "OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
  409. "@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
  410. "unop","expr","exprlist","nonnull_exprlist","unary_expr","@9","cast_expr","@10",
  411. "expr_no_commas","primary","@11","string","xdecls","lineno_datadecl","datadecls",
  412. "datadecl","lineno_decl","decls","setspecs","decl","typed_declspecs","reserved_declspecs",
  413. "declmods","typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  414. "initdecls","notype_initdecls","maybeasm","initdcl","@12","notype_initdcl","@13",
  415. "maybe_attribute","attribute_list","attrib","init","@14","initlist_maybe_comma",
  416. "initlist1","initelt","@15","@16","@17","@18","@19","nested_function","@20",
  417. "notype_nested_function","@21","declarator","after_type_declarator","parm_declarator",
  418. "notype_declarator","structsp","@22","@23","@24","@25","maybecomma","maybecomma_warn",
  419. "component_decl_list","component_decl_list2","component_decl","components","component_declarator",
  420. "enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
  421. "absdcl1","stmts","xstmts","errstmt","pushlevel","maybe_label_decls","label_decls",
  422. "label_decl","compstmt_or_error","compstmt","simple_if","if_prefix","do_stmt_start",
  423. "@26","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
  424. "stmt_or_label","stmt","@27","@28","@29","@30","@31","@32","@33","all_iter_stmt",
  425. "all_iter_stmt_simple","@34","label","maybe_type_qual","xexpr","asm_operands",
  426. "nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@35","parmlist_1",
  427. "@36","parmlist_2","parms","parm","parmlist_or_identifiers","@37","parmlist_or_identifiers_1",
  428. "identifiers","identifiers_or_typenames",""
  429. };
  430. #endif
  431.  
  432. static const short yyr1[] = {     0,
  433.     85,    85,    87,    86,    88,    86,    89,    89,    89,    90,
  434.     90,    90,    90,    90,    90,    90,    90,    92,    93,    91,
  435.     91,    94,    95,    91,    91,    96,    97,    91,    91,    98,
  436.     98,    99,    99,    99,    99,    99,    99,    99,   100,   101,
  437.    101,   102,   102,   103,   103,   104,   103,   103,   103,   103,
  438.    103,   103,   103,   103,   103,   105,   105,   106,   105,   107,
  439.    107,   107,   107,   107,   107,   107,   107,   107,   107,   107,
  440.    107,   107,   107,   107,   107,   107,   107,   108,   108,   108,
  441.    108,   108,   109,   108,   108,   108,   108,   108,   108,   108,
  442.    110,   110,   111,   111,   111,   112,   113,   113,   113,   113,
  443.    114,   114,   114,   114,   115,   116,   116,   116,   116,   117,
  444.    118,   118,   118,   118,   118,   118,   119,   119,   120,   120,
  445.    120,   121,   121,   121,   121,   122,   122,   123,   123,   124,
  446.    124,   124,   124,   124,   125,   125,   125,   126,   126,   127,
  447.    127,   128,   128,   130,   129,   129,   132,   131,   131,   133,
  448.    133,   134,   134,   135,   135,   135,   135,   135,   136,   137,
  449.    136,   136,   138,   138,   139,   139,   140,   141,   140,   140,
  450.    142,   140,   143,   140,   144,   140,   145,   140,   147,   146,
  451.    149,   148,   150,   150,   151,   151,   151,   151,   151,   151,
  452.    152,   152,   152,   152,   152,   153,   153,   153,   153,   153,
  453.    153,   155,   154,   154,   154,   156,   154,   154,   154,   157,
  454.    154,   158,   154,   154,   159,   159,   160,   160,   161,   161,
  455.    162,   162,   162,   163,   163,   163,   163,   163,   164,   164,
  456.    165,   165,   165,   166,   166,   167,   167,   168,   168,   169,
  457.    169,   170,   170,   171,   171,   172,   172,   172,   172,   172,
  458.    172,   172,   172,   172,   173,   173,   173,   174,   174,   175,
  459.    176,   177,   177,   178,   178,   179,   180,   180,   181,   181,
  460.    181,   181,   182,   182,   183,   185,   184,   186,   187,   188,
  461.    188,   189,   190,   190,   191,   191,   191,   192,   191,   191,
  462.    191,   193,   194,   191,   191,   191,   195,   196,   197,   191,
  463.    198,   191,   191,   191,   191,   191,   191,   191,   191,   191,
  464.    191,   191,   191,   199,   201,   200,   202,   202,   202,   202,
  465.    203,   203,   204,   204,   205,   205,   206,   206,   207,   208,
  466.    208,   210,   209,   211,   212,   211,   211,   213,   213,   213,
  467.    213,   214,   214,   215,   215,   215,   215,   215,   217,   216,
  468.    218,   218,   219,   219,   220,   220
  469. };
  470.  
  471. static const short yyr2[] = {     0,
  472.      0,     1,     0,     2,     0,     3,     1,     1,     5,     3,
  473.      4,     4,     2,     2,     2,     2,     1,     0,     0,     7,
  474.      4,     0,     0,     7,     4,     0,     0,     6,     3,     1,
  475.      1,     1,     1,     1,     1,     1,     1,     1,     1,     0,
  476.      1,     1,     3,     1,     2,     0,     3,     2,     2,     2,
  477.      4,     2,     4,     2,     2,     1,     4,     0,     7,     1,
  478.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  479.      3,     3,     3,     3,     5,     3,     3,     1,     1,     1,
  480.      3,     3,     0,     4,     4,     4,     3,     3,     2,     2,
  481.      1,     2,     0,     1,     2,     3,     1,     1,     2,     2,
  482.      4,     4,     2,     2,     3,     1,     1,     2,     2,     0,
  483.      4,     4,     3,     3,     2,     2,     2,     3,     0,     2,
  484.      2,     1,     1,     2,     2,     2,     3,     0,     2,     1,
  485.      1,     1,     4,     4,     1,     1,     1,     1,     3,     1,
  486.      3,     0,     4,     0,     6,     3,     0,     6,     3,     0,
  487.      6,     1,     3,     1,     1,     4,     4,     8,     1,     0,
  488.      4,     1,     0,     2,     1,     3,     1,     0,     4,     1,
  489.      0,     8,     0,     6,     0,     4,     0,     5,     0,     3,
  490.      0,     3,     1,     1,     3,     3,     4,     3,     3,     1,
  491.      3,     4,     3,     3,     1,     3,     3,     3,     4,     3,
  492.      1,     0,     6,     4,     2,     0,     6,     4,     2,     0,
  493.      7,     0,     6,     2,     0,     1,     0,     1,     1,     2,
  494.      0,     3,     2,     3,     1,     3,     1,     1,     1,     3,
  495.      4,     6,     5,     1,     3,     1,     3,     2,     2,     0,
  496.      1,     1,     2,     0,     2,     3,     3,     2,     3,     4,
  497.      3,     2,     3,     2,     1,     2,     2,     0,     1,     2,
  498.      0,     0,     1,     1,     2,     3,     1,     2,     2,     6,
  499.      5,     5,     2,     2,     4,     0,     4,     0,     0,     3,
  500.      4,     3,     1,     1,     1,     1,     2,     0,     4,     1,
  501.      3,     0,     0,     7,     5,     2,     0,     0,     0,    12,
  502.      0,     6,     2,     2,     2,     3,     6,     8,    10,    12,
  503.      3,     4,     1,     1,     0,     6,     3,     5,     2,     2,
  504.      0,     1,     0,     1,     0,     1,     1,     3,     4,     1,
  505.      3,     0,     2,     2,     0,     4,     2,     0,     1,     1,
  506.      3,     1,     3,     2,     2,     2,     2,     2,     0,     2,
  507.      1,     2,     1,     3,     1,     3
  508. };
  509.  
  510. static const short yydefact[] = {     3,
  511.      5,     0,     0,     0,   132,   123,   130,   122,     0,     0,
  512.      0,     0,     0,    17,     4,     8,     7,     0,   110,   110,
  513.    119,   131,     6,    15,    16,    30,    31,   212,   214,   221,
  514.    205,   221,   209,     0,     0,   201,   244,     0,     0,   140,
  515.      0,    14,     0,   125,   124,    13,     0,   119,   117,     0,
  516.    210,     0,     0,   202,     0,   206,    78,    79,    91,     0,
  517.      0,    46,     0,     0,     0,    32,    34,    33,     0,    35,
  518.     36,     0,    37,    38,     0,     0,    39,    56,    60,    42,
  519.     44,    80,   242,     0,   240,   128,     0,   240,     0,     0,
  520.     10,     0,    29,     0,   349,     0,     0,   150,   190,   244,
  521.      0,     0,   138,     0,   183,   184,     0,     0,   118,   121,
  522.    135,   136,   120,   137,   236,   217,   234,     0,   204,   228,
  523.    223,   110,   220,   110,   221,   208,   221,     0,    50,     0,
  524.     52,     0,    54,    55,    49,    45,     0,     0,     0,     0,
  525.     48,     0,     0,     0,     0,   323,     0,     0,     0,     0,
  526.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  527.     89,    90,     0,     0,    40,     0,    92,   133,   244,   332,
  528.      0,   238,   241,   126,   134,   243,   128,   239,   245,   198,
  529.    197,   141,   142,     0,   196,     0,   200,     0,     0,    27,
  530.      0,   278,    98,   279,     0,   149,     0,     0,    12,     0,
  531.     21,     0,   150,   349,     0,    11,    25,     0,     0,   218,
  532.      0,   217,   278,   222,   278,     0,     0,     0,     0,    47,
  533.     82,    81,   261,     0,     0,     9,    43,    77,    76,   324,
  534.      0,    74,    73,    71,    72,    70,    69,    68,    66,    67,
  535.     61,    62,    63,    64,    65,    88,    87,     0,    41,     0,
  536.    248,     0,   252,     0,   254,     0,   332,     0,   129,   127,
  537.      0,     0,   353,   339,   240,   240,   351,     0,   340,   342,
  538.    350,     0,   199,   260,     0,   100,    95,    99,     0,     0,
  539.    147,   189,   185,   139,    19,   146,   186,   188,     0,    23,
  540.    237,   235,   213,     0,   224,   229,   279,   226,   203,   207,
  541.     51,    53,   269,   262,    84,    58,    57,     0,    85,    86,
  542.    247,   246,   333,   253,   249,   251,     0,   143,   337,   195,
  543.    244,   332,   344,   345,   346,   244,   347,   348,   334,   335,
  544.      0,   352,     0,     0,    28,   267,    96,   110,   110,     0,
  545.      0,     0,   144,   187,     0,   211,   278,     0,     0,     0,
  546.    263,   264,     0,    75,   250,   248,   349,     0,   248,     0,
  547.    341,   343,   354,   268,   103,     0,   104,     0,   154,   155,
  548.      0,   152,   162,   160,   159,   148,    20,     0,    24,   230,
  549.      0,   150,   355,     0,     0,     0,   278,     0,   107,   279,
  550.    255,   265,   170,    78,     0,     0,   168,     0,   167,     0,
  551.    215,   165,   194,   191,   193,     0,   336,     0,     0,   142,
  552.      0,     0,     0,     0,   145,   150,     0,   231,   266,     0,
  553.    271,   109,   108,     0,     0,   272,   257,   279,   256,     0,
  554.      0,     0,     0,   175,    59,     0,   164,   192,   101,   102,
  555.      0,     0,   151,   153,     0,   233,   150,   356,   270,     0,
  556.    132,     0,   292,   276,     0,     0,     0,     0,     0,     0,
  557.      0,     0,   321,   313,     0,     0,   105,   110,   110,   285,
  558.    290,     0,     0,   282,   283,   286,   314,   284,   177,     0,
  559.      0,     0,     0,   166,   156,     0,   157,   161,   232,     0,
  560.      0,   278,   323,     0,     0,   319,   303,   304,   305,     0,
  561.      0,     0,   322,     0,   320,   287,   115,     0,   116,     0,
  562.      0,   274,   279,   273,   296,     0,     0,     0,   173,   169,
  563.    176,     0,     0,     0,     0,    44,     0,     0,     0,   317,
  564.    306,     0,   311,     0,     0,   113,   142,     0,   114,   142,
  565.    291,   278,     0,     0,   178,     0,     0,     0,   275,     0,
  566.    277,   315,   297,   301,     0,   312,     0,   111,     0,   112,
  567.      0,   289,   280,   278,     0,   171,   174,     0,   293,   278,
  568.    323,   278,   318,   325,     0,   180,   182,   281,   295,     0,
  569.    158,   278,   316,     0,   302,     0,     0,   326,   327,   307,
  570.    172,   294,   298,     0,   325,     0,     0,   323,     0,     0,
  571.    308,   328,     0,   329,     0,     0,   299,   330,     0,   309,
  572.    278,     0,     0,   300,   310,   331,     0,     0,     0
  573. };
  574.  
  575. static const short yydefgoto[] = {   617,
  576.      1,     2,     3,    15,    16,    17,   202,   342,   208,   345,
  577.     97,   275,   398,    75,   230,   248,    77,    78,   132,    79,
  578.    353,    80,    81,   139,    82,   190,   191,   192,   337,   386,
  579.    387,    18,   467,   265,    49,   266,    85,   174,    21,   113,
  580.    102,    39,    98,   103,   378,    40,   341,   196,   371,   372,
  581.    376,   414,   400,   401,   402,   433,   580,   547,   483,   517,
  582.    536,   559,   539,   561,   183,   105,   323,   106,    22,   125,
  583.    127,   118,    50,   437,   211,    52,    53,   123,   295,   296,
  584.    116,   117,    87,   172,    88,    89,   173,   388,   425,   193,
  585.    304,   350,   351,   352,   335,   336,   471,   472,   473,   492,
  586.    513,   279,   514,   391,   474,   475,   542,   491,   582,   571,
  587.    598,   611,   572,   476,   477,   570,   478,   504,   231,   587,
  588.    588,   589,   609,   253,   254,   267,   360,   268,   269,   270,
  589.    185,   186,   271,   272,   384
  590. };
  591.  
  592. static const short yypact[] = {    68,
  593.     86,  1840,  1840,   328,-32768,-32768,-32768,-32768,    60,    70,
  594.     77,    67,    73,-32768,-32768,-32768,-32768,    95,    42,   398,
  595. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,    53,-32768,
  596.     61,-32768,    75,  1719,  1635,-32768,-32768,    95,    98,-32768,
  597.    711,-32768,   294,-32768,-32768,-32768,    95,-32768,   684,   411,
  598. -32768,    71,   261,-32768,    89,-32768,-32768,-32768,-32768,  1732,
  599.   1782,-32768,  1719,  1719,   411,-32768,-32768,-32768,  1719,-32768,
  600. -32768,  1033,-32768,-32768,  1719,   135,   132,-32768,-32768,  1928,
  601.    719,   220,-32768,   150,   130,-32768,   171,  1115,   263,   360,
  602. -32768,   294,-32768,   144,-32768,  1220,   188,   227,-32768,-32768,
  603.    294,   205,-32768,  1213,   385,   393,   217,   873,   684,-32768,
  604. -32768,-32768,-32768,-32768,   243,   204,-32768,   411,-32768,-32768,
  605. -32768,   399,   216,   278,-32768,-32768,-32768,  1033,-32768,  1033,
  606. -32768,  1719,-32768,-32768,-32768,-32768,   225,   228,   224,   233,
  607. -32768,   237,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,
  608.   1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,
  609. -32768,-32768,   411,   411,  1719,  1719,-32768,-32768,-32768,   130,
  610.   1274,-32768,   424,   518,-32768,-32768,-32768,-32768,-32768,   393,
  611. -32768,-32768,   290,   316,-32768,   380,-32768,   246,   258,-32768,
  612.     65,    41,-32768,-32768,   281,   312,   415,   373,-32768,   294,
  613. -32768,   188,   227,-32768,  1328,-32768,-32768,   188,  1719,   411,
  614.    272,   204,-32768,-32768,-32768,   279,   291,   295,   314,-32768,
  615. -32768,-32768,   310,   323,  1577,-32768,  1928,  1928,  1928,-32768,
  616.    370,  1941,  1953,  1964,  1059,  1756,  1367,   504,   442,   442,
  617.    421,   421,-32768,-32768,-32768,-32768,-32768,   340,   132,   348,
  618.    218,   375,-32768,   536,-32768,   358,-32768,  1341,-32768,   518,
  619.     40,   371,-32768,-32768,   158,   954,-32768,   374,   226,-32768,
  620. -32768,    97,-32768,-32768,    25,-32768,-32768,-32768,  1307,   364,
  621. -32768,   385,-32768,-32768,-32768,   422,-32768,-32768,   377,-32768,
  622.   1928,-32768,-32768,   379,   387,-32768,-32768,   387,-32768,-32768,
  623. -32768,-32768,-32768,   447,-32768,-32768,-32768,  1719,-32768,-32768,
  624.    424,-32768,-32768,-32768,-32768,-32768,   404,-32768,-32768,-32768,
  625. -32768,   127,   438,   393,-32768,-32768,   393,-32768,-32768,-32768,
  626.   1253,-32768,   493,   224,-32768,-32768,-32768,   425,   625,   313,
  627.    478,    25,-32768,-32768,    25,-32768,-32768,   166,   411,   651,
  628.    447,-32768,   318,  1551,-32768,   252,-32768,  1395,   160,   536,
  629. -32768,-32768,-32768,-32768,-32768,   294,-32768,    95,   448,-32768,
  630.    146,-32768,-32768,-32768,  1928,-32768,-32768,   478,-32768,-32768,
  631.   1719,    22,-32768,   253,   427,   568,   423,   732,-32768,-32768,
  632. -32768,-32768,-32768,   472,   411,  1719,-32768,   477,  1928,   439,
  633.    435,-32768,   438,-32768,-32768,   437,-32768,   266,   293,   122,
  634.    151,   449,   313,   318,-32768,  1885,  1719,-32768,-32768,   411,
  635. -32768,-32768,-32768,   813,   456,-32768,-32768,-32768,-32768,  1477,
  636.    502,  1861,   318,-32768,-32768,  1091,-32768,-32768,-32768,-32768,
  637.    195,   468,-32768,-32768,   483,-32768,  1885,-32768,-32768,  1527,
  638.    508,   503,-32768,-32768,   505,   506,  1719,   529,   500,   520,
  639.   1669,    56,   577,-32768,   560,   523,-32768,   527,   792,-32768,
  640.    590,   894,    32,-32768,-32768,-32768,-32768,-32768,-32768,  1719,
  641.    570,   531,  1152,-32768,-32768,   600,-32768,-32768,-32768,  1719,
  642.    551,-32768,  1719,  1719,  1421,-32768,-32768,-32768,-32768,   537,
  643.   1719,   542,-32768,   554,-32768,-32768,-32768,   294,-32768,    95,
  644.    975,-32768,-32768,-32768,-32768,  1719,  1152,  1836,-32768,-32768,
  645. -32768,   539,   545,  1719,   608,   305,   548,   550,  1719,-32768,
  646. -32768,   555,-32768,  1719,   298,-32768,     2,   347,-32768,   125,
  647. -32768,-32768,  1527,   558,-32768,   599,  1152,   632,-32768,   564,
  648. -32768,-32768,-32768,-32768,  1910,-32768,     7,-32768,   224,-32768,
  649.    224,-32768,-32768,-32768,   565,-32768,-32768,   567,-32768,-32768,
  650.   1719,-32768,-32768,   633,   572,-32768,-32768,-32768,-32768,  1152,
  651. -32768,-32768,-32768,   583,-32768,   585,    18,   602,-32768,-32768,
  652. -32768,-32768,-32768,  1719,   633,   603,   633,  1719,   605,    26,
  653. -32768,-32768,   610,-32768,   316,   615,-32768,   220,   199,-32768,
  654. -32768,   616,   316,-32768,-32768,   220,   688,   699,-32768
  655. };
  656.  
  657. static const short yypgoto[] = {-32768,
  658. -32768,-32768,-32768,   701,-32768,-32768,-32768,-32768,-32768,-32768,
  659. -32768,-32768,    -7,-32768,   -34,-32768,   540,   454,-32768,   -19,
  660. -32768,    87,   215,-32768,  -175,  -102,   517,-32768,-32768,   326,
  661. -32768,    -6,-32768,     9,   662,    14,   661,   543,    -5,  -122,
  662.   -342,   -40,   -96,   -61,-32768,-32768,-32768,  -183,-32768,   306,
  663.    343,-32768,  -324,-32768,  -382,-32768,-32768,-32768,-32768,-32768,
  664. -32768,-32768,-32768,-32768,   -37,   -66,   366,   -13,   -10,-32768,
  665. -32768,-32768,-32768,-32768,   514,    15,-32768,-32768,   512,   381,
  666.    612,   534,    17,   -69,   692,   -72,  -149,   350,-32768,  -173,
  667. -32768,-32768,-32768,   395,  -305,  -112,-32768,-32768,-32768,-32768,
  668.    -87,  -256,  -460,  -333,-32768,   219,-32768,-32768,-32768,-32768,
  669. -32768,-32768,-32768,-32768,-32768,-32768,   222,-32768,  -457,   165,
  670. -32768,   172,-32768,   511,-32768,  -231,-32768,-32768,-32768,   432,
  671.   -182,-32768,-32768,-32768,-32768
  672. };
  673.  
  674.  
  675. #define    YYLAST        2017
  676.  
  677.  
  678. static const short yytable[] = {    76,
  679.     84,    29,    31,    33,    41,   104,   107,   203,   261,   194,
  680.     19,    19,    43,    47,    48,    20,    20,   276,   178,   286,
  681.    252,   287,   313,   408,    90,   334,   224,   197,    94,    86,
  682.    182,   525,   515,   108,   198,   527,   377,   138,   114,   379,
  683.    348,   -94,   115,   133,   134,   574,    55,    86,   167,   136,
  684.    277,   259,   195,   484,   429,   141,   595,   135,    26,    27,
  685.    417,   188,    26,    27,   605,   189,    86,    -1,   -97,   -97,
  686.    -97,   -97,    26,    27,   -97,   180,   -97,   -97,   -97,    26,
  687.     27,   562,   177,   575,  -179,    -2,   203,    90,   140,   445,
  688.    429,   516,   -97,   138,   596,   138,   251,    36,   114,   285,
  689.    521,   311,   606,   578,   194,   290,   501,   223,   482,   583,
  690.    115,   585,   220,   584,   194,   213,   318,   215,   177,    42,
  691.    194,   592,    86,   -94,    86,   297,    34,   297,   407,    36,
  692.    282,   250,    35,   430,   545,    51,   256,   259,   284,   216,
  693.    603,   217,    28,    54,   218,    37,   219,   -97,    94,   119,
  694.    614,    94,    30,   441,    38,   246,   247,    56,   442,    32,
  695.     36,   320,    36,   114,   567,   535,   179,   126,    36,    99,
  696.    289,   450,   252,   332,   404,    91,   389,   326,   333,    92,
  697.    169,    95,    96,   180,    95,    96,   322,   171,   189,   170,
  698.    171,  -278,  -278,  -278,  -278,   325,   328,   591,   418,  -278,
  699.   -278,  -278,   115,   184,   381,   307,   311,  -181,   321,   311,
  700.    326,   142,   422,   143,   427,  -278,   100,   322,   171,   322,
  701.    171,   364,   412,   317,   179,   101,   168,   413,   167,   227,
  702.    228,   229,   446,   232,   233,   234,   235,   236,   237,   238,
  703.    239,   240,   241,   242,   243,   244,   245,   175,   356,   114,
  704.    427,   324,   327,   359,    36,   320,   543,   195,   179,   297,
  705.     48,   120,   390,   489,     5,    36,     7,    83,   169,   179,
  706.    -93,   485,     9,    10,    11,   612,   486,   170,   171,   209,
  707.    613,     5,   199,     7,   176,   210,   200,   338,    13,     9,
  708.     10,    11,   339,   214,   206,   291,    36,    99,    92,   390,
  709.    428,   221,   321,   330,   222,    13,   223,   331,    90,   225,
  710.    382,   322,   171,    37,   226,   369,    94,   470,   393,   370,
  711.    394,    27,    38,   406,    59,    58,    59,   409,    60,   273,
  712.    419,   366,   368,    48,   420,   274,   428,   470,   121,  -219,
  713.    280,   383,   180,   439,   100,   180,    61,   200,   281,    62,
  714.    293,    63,    64,   101,   410,  -227,  -227,   299,    65,   161,
  715.    162,    66,   163,   164,   165,   166,    67,    68,    69,   300,
  716.    440,   301,    70,    71,    92,   558,   395,    72,   396,   200,
  717.    262,   552,   263,     5,     6,     7,     8,   431,   303,   264,
  718.    302,     9,    10,    11,   354,   466,  -163,    73,    74,   305,
  719.    397,     5,    44,     7,    45,    24,    25,    13,   308,     9,
  720.     10,    11,   448,    26,    27,   466,   309,    36,    99,    95,
  721.     96,   179,   465,   340,   560,    13,   500,   375,    92,   608,
  722.    470,   310,   204,   205,   257,   258,   181,   616,   468,   399,
  723.    203,   314,   465,   469,   204,   205,   576,   319,   577,   283,
  724.    329,   312,    95,    96,   502,   523,  -338,   346,   343,   528,
  725.    344,   508,   510,    48,   375,   100,   532,   416,   347,   538,
  726.    537,   158,   159,   160,   101,    46,  -225,  -225,   373,   349,
  727.     57,   544,   432,   257,   258,    58,    59,   355,    60,   550,
  728.    156,   157,   158,   159,   160,   363,   540,   357,   358,   557,
  729.    399,  -258,   365,   447,   274,   421,    61,   411,   466,    62,
  730.    -30,    63,    64,   129,   131,   434,   436,   435,    65,   399,
  731.    438,    66,   399,   111,   112,   443,    67,    68,    69,     9,
  732.     10,    11,    70,    71,   449,   465,   262,    72,   479,     5,
  733.      6,     7,     8,   495,   487,   264,   -31,     9,    10,    11,
  734.    154,   155,   156,   157,   158,   159,   160,    73,    74,   599,
  735.    374,   488,   490,    13,   493,   494,   518,   496,   189,   399,
  736.   -106,  -106,  -106,  -106,  -106,  -106,  -106,   497,  -106,  -106,
  737.   -106,  -106,  -106,   503,  -106,  -106,  -106,  -106,  -106,  -106,
  738.   -106,  -106,  -106,  -106,  -106,  -106,  -106,   498,   505,  -106,
  739.    506,  -106,  -106,   399,   507,   511,   519,   522,  -106,   520,
  740.    524,  -106,  -338,   534,   531,   555,  -106,  -106,  -106,   533,
  741.    548,   549,  -106,  -106,   551,   553,   554,  -106,     5,    44,
  742.      7,    45,   556,   399,   565,   566,     9,    10,    11,   568,
  743.    569,   586,   579,   581,   594,  -106,  -106,  -106,  -106,   590,
  744.   -106,   385,    13,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  745.    593,  -278,  -278,  -278,  -278,  -278,   399,  -278,  -278,  -278,
  746.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  747.    601,   604,  -278,   597,  -278,  -278,   607,   618,   110,   111,
  748.    112,  -278,   610,   615,  -278,     9,    10,    11,   619,  -278,
  749.   -278,  -278,   367,    23,   249,  -278,  -278,   526,   278,   109,
  750.   -278,    93,   423,   122,   -26,   -26,   -26,   -26,   444,   260,
  751.    415,   403,   -26,   -26,   -26,   294,   298,   380,  -278,   212,
  752.   -278,  -278,   189,  -278,  -278,  -278,   424,    94,   -26,  -278,
  753.   -278,  -142,  -278,   292,   124,   392,  -278,  -142,  -278,  -278,
  754.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,   600,
  755.   -278,   563,   362,  -278,   564,  -278,  -278,   315,   602,     0,
  756.     95,    96,  -278,   161,   162,  -278,   163,   164,   165,   166,
  757.   -278,  -278,  -278,     0,     0,     0,  -278,  -278,  -142,     0,
  758.      0,  -278,  -142,   -26,     0,     5,    44,     7,    45,     0,
  759.      0,     0,     0,     9,    10,    11,     0,     0,     0,  -278,
  760.    426,  -278,  -278,   189,  -278,  -278,  -278,     0,     0,    13,
  761.   -278,  -278,     0,  -278,     0,     0,     0,  -278,     0,  -278,
  762.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  763.      0,  -278,     0,     0,  -278,     0,  -278,  -278,     0,     0,
  764.      0,     0,     0,  -278,     0,     0,  -278,     0,     0,     0,
  765.      0,  -278,  -278,  -278,     0,     0,     0,  -278,  -278,   509,
  766.      0,     0,  -278,   207,     0,     0,   -22,   -22,   -22,   -22,
  767.      0,     0,     0,     0,   -22,   -22,   -22,     0,     0,     0,
  768.   -278,  -259,  -278,  -278,   512,  -278,  -278,  -278,     0,    94,
  769.    -22,  -278,  -278,  -142,  -278,     0,     0,     0,  -278,  -142,
  770.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  771.   -278,     0,  -278,     0,     0,  -278,     0,  -278,  -278,     0,
  772.      0,     0,    95,    96,  -278,     0,     0,  -278,     0,     0,
  773.      0,     0,  -278,  -278,  -278,     0,     0,     0,  -278,  -278,
  774.   -142,     0,     0,  -278,  -142,   -22,    36,     5,    44,     7,
  775.     45,     0,     0,     0,     0,     9,    10,    11,     0,     0,
  776.      0,  -278,     0,  -278,  -278,   541,  -278,  -288,  -288,     0,
  777.      0,    13,  -288,  -288,     0,  -288,     0,     0,     0,  -288,
  778.      0,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  779.   -288,  -288,     0,  -288,   326,     0,  -288,     0,  -288,  -288,
  780.      0,     0,     0,   322,   171,  -288,     0,     0,  -288,     0,
  781.      0,     0,     0,  -288,  -288,  -288,     0,     0,     0,  -288,
  782.   -288,     0,     0,   137,  -288,    57,     5,     0,     7,    83,
  783.     58,    59,     0,    60,     9,    10,    11,     0,     0,     0,
  784.      0,     0,  -288,     0,  -288,  -288,     0,  -288,     0,     0,
  785.     13,    61,     0,     0,    62,     0,    63,    64,     0,     0,
  786.      0,     0,     0,    65,     0,     0,    66,     0,     0,     0,
  787.      0,    67,    68,    69,     0,     0,     0,    70,    71,     0,
  788.      0,   393,    72,   394,    27,     0,     0,     0,    58,    59,
  789.      0,    60,   151,   152,   153,   154,   155,   156,   157,   158,
  790.    159,   160,    73,    74,     0,   -83,     0,     0,     5,    61,
  791.      7,   176,    62,     0,    63,    64,     9,    10,    11,     0,
  792.      0,    65,     0,     0,    66,     0,     0,     0,     0,    67,
  793.     68,    69,    13,     0,     0,    70,    71,     0,     0,   395,
  794.     72,   396,   393,     0,   394,    27,     0,     0,     0,    58,
  795.     59,     0,    60,     0,     0,   169,     0,     0,     0,  -216,
  796.     73,    74,     0,   397,   170,   171,     0,     0,     0,     0,
  797.     61,     0,     0,    62,     0,    63,    64,     0,     0,     0,
  798.      0,     0,    65,     0,     0,    66,     0,     0,     0,     0,
  799.     67,    68,    69,     0,     0,     0,    70,    71,     0,     0,
  800.    395,    72,   396,   201,     0,     0,   -18,   -18,   -18,   -18,
  801.      0,     0,    57,     0,   -18,   -18,   -18,    58,    59,     0,
  802.     60,    73,    74,     0,   397,     0,     0,     0,     0,    94,
  803.    -18,     0,     0,  -142,     0,     0,     0,     0,    61,  -142,
  804.      0,    62,     0,    63,    64,     0,     5,     6,     7,     8,
  805.     65,     0,   361,    66,     9,    10,    11,     0,    67,    68,
  806.     69,     0,     0,     0,    70,    71,    57,     0,     0,    72,
  807.     13,    58,    59,     0,    60,     0,     0,     0,     0,     0,
  808.   -142,     0,     0,     0,  -142,   -18,     0,     0,     0,    73,
  809.     74,     0,    61,   187,     0,    62,     0,    63,    64,     0,
  810.      5,     6,     7,     8,    65,     0,     0,    66,     9,    10,
  811.     11,     0,    67,    68,    69,     0,     0,     0,    70,    71,
  812.     57,     0,     0,    72,    13,    58,    59,     0,    60,     0,
  813.      0,     0,     0,    57,     0,     0,     0,     0,    58,    59,
  814.      0,    60,     0,    73,    74,     0,    61,   255,     0,    62,
  815.      0,    63,    64,     0,     0,     0,     0,     0,    65,    61,
  816.      0,    66,    62,     0,    63,    64,    67,    68,    69,     0,
  817.      0,    65,    70,    71,    66,     0,     0,    72,     0,    67,
  818.     68,    69,     0,     0,     0,    70,    71,    57,     0,     0,
  819.     72,     0,    58,    59,     0,    60,     0,    73,    74,     0,
  820.      0,   288,   153,   154,   155,   156,   157,   158,   159,   160,
  821.     73,    74,     0,    61,   316,     0,    62,     0,    63,    64,
  822.    529,     0,     0,     0,     0,    65,     0,     0,    66,     0,
  823.      0,     0,     0,    67,    68,    69,     0,     0,     0,    70,
  824.     71,     0,     0,     0,    72,     0,   144,   145,   146,   530,
  825.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  826.    157,   158,   159,   160,    73,    74,     0,     0,   405,   394,
  827.    451,     6,     7,     8,    58,    59,     0,    60,     9,    10,
  828.     11,   452,     0,   453,   454,   455,   456,   457,   458,   459,
  829.    460,   461,   462,   463,    13,    61,     0,     0,    62,     0,
  830.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  831.     66,     0,     0,     0,     0,    67,    68,    69,     0,   394,
  832.     27,    70,    71,     0,    58,    59,    72,    60,     0,     0,
  833.      0,   452,     0,   453,   454,   455,   456,   457,   458,   459,
  834.    460,   461,   462,   463,   464,    61,    73,    74,    62,   223,
  835.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  836.     66,     0,     0,     0,     0,    67,    68,    69,     0,    57,
  837.      0,    70,    71,     0,    58,    59,    72,    60,   146,     0,
  838.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  839.    157,   158,   159,   160,   464,    61,    73,    74,    62,   223,
  840.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  841.     66,     0,     0,     0,     0,    67,    68,    69,     0,     0,
  842.      0,    70,    71,     0,     0,     0,    72,    57,     5,     0,
  843.      7,    83,    58,    59,     0,    60,     9,    10,    11,     0,
  844.      0,     0,     0,     0,     0,     0,    73,    74,     0,   306,
  845.      0,     0,    13,    61,     0,     0,    62,     0,    63,    64,
  846.      0,    57,     0,     0,     0,    65,    58,    59,    66,    60,
  847.      0,     0,     0,    67,    68,    69,     0,     0,     0,    70,
  848.     71,     0,     0,     0,    72,     0,     0,    61,     0,     0,
  849.     62,     0,    63,    64,     0,     0,     0,     0,     0,    65,
  850.      0,     0,    66,     0,    73,    74,     0,    67,    68,    69,
  851.      0,    57,     0,    70,    71,     0,    58,    59,    72,    60,
  852.      0,     0,     0,     0,    57,     0,     0,     0,     0,    58,
  853.     59,     0,    60,     0,     0,     0,   499,    61,    73,    74,
  854.     62,     0,    63,    64,     0,     0,     0,     0,     0,    65,
  855.     61,     0,    66,    62,     0,    63,    64,    67,    68,    69,
  856.      0,     0,    65,    70,    71,    66,     0,     0,    72,     0,
  857.     67,    68,    69,     0,    57,     0,    70,    71,     0,    58,
  858.     59,   128,    60,     0,     0,     0,     0,     0,    73,    74,
  859.    152,   153,   154,   155,   156,   157,   158,   159,   160,     0,
  860.     61,    73,    74,    62,     0,    63,    64,     0,     0,     0,
  861.      0,     0,    65,     0,     0,    66,     0,     0,     0,     0,
  862.     67,    68,    69,     0,     0,     0,    70,    71,     0,     0,
  863.      4,   130,  -110,     5,     6,     7,     8,     0,     0,     0,
  864.      0,     9,    10,    11,     0,     0,     0,     0,     0,     0,
  865.      0,    73,    74,     0,     0,     0,    12,    13,     0,     0,
  866.    480,   144,   145,   146,     0,   147,   148,   149,   150,   151,
  867.    152,   153,   154,   155,   156,   157,   158,   159,   160,     0,
  868.   -110,     0,     0,     0,     0,     0,   144,   145,   146,  -110,
  869.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  870.    157,   158,   159,   160,     0,   195,     0,    14,     0,   546,
  871.    144,   145,   146,     0,   147,   148,   149,   150,   151,   152,
  872.    153,   154,   155,   156,   157,   158,   159,   160,     0,     0,
  873.      0,     0,     0,     0,   481,   144,   145,   146,   573,   147,
  874.    148,   149,   150,   151,   152,   153,   154,   155,   156,   157,
  875.    158,   159,   160,   144,   145,   146,     0,   147,   148,   149,
  876.    150,   151,   152,   153,   154,   155,   156,   157,   158,   159,
  877.    160,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  878.    157,   158,   159,   160,   149,   150,   151,   152,   153,   154,
  879.    155,   156,   157,   158,   159,   160,   150,   151,   152,   153,
  880.    154,   155,   156,   157,   158,   159,   160
  881. };
  882.  
  883. static const short yycheck[] = {    34,
  884.     35,     9,    10,    11,    18,    43,    47,   104,   184,    97,
  885.      2,     3,    19,    20,    20,     2,     3,   191,    88,   203,
  886.    170,   204,   254,   366,    38,     1,   139,   100,    27,    35,
  887.     92,   492,     1,    47,   101,   493,   342,    72,    49,   345,
  888.    297,     1,    50,    63,    64,    39,    32,    53,     9,    69,
  889.     10,   174,    31,   436,   388,    75,    39,    65,     3,     4,
  890.     39,    96,     3,     4,    39,     1,    72,     0,     4,     5,
  891.      6,     7,     3,     4,    10,    89,    12,    13,    14,     3,
  892.      4,   542,    88,    77,    83,     0,   183,   101,    72,   414,
  893.    424,    60,    28,   128,    77,   130,   169,     3,   109,   202,
  894.    483,   251,    77,   564,   192,   208,    51,    83,   433,   570,
  895.    118,   572,   132,   571,   202,   122,    77,   124,   124,    78,
  896.    208,   582,   128,    83,   130,   213,    60,   215,   360,     3,
  897.    197,   166,    60,   390,   517,    83,   171,   260,   200,   125,
  898.    598,   127,    83,    83,   128,    51,   130,    83,    27,    79,
  899.    611,    27,    83,     3,    60,   163,   164,    83,     8,    83,
  900.      3,     4,     3,   174,   547,   508,     7,    79,     3,     4,
  901.    205,   428,   322,    77,   357,    78,   350,    51,    82,    82,
  902.     51,    60,    61,   197,    60,    61,    60,    61,     1,    60,
  903.     61,     4,     5,     6,     7,   265,   266,   580,   382,    12,
  904.     13,    14,   210,    60,    39,   225,   356,    83,    51,   359,
  905.     51,    77,   386,    82,   388,    28,    51,    60,    61,    60,
  906.     61,   334,    77,   258,     7,    60,    77,    82,     9,   143,
  907.    144,   145,   416,   147,   148,   149,   150,   151,   152,   153,
  908.    154,   155,   156,   157,   158,   159,   160,    77,   321,   260,
  909.    424,   265,   266,   326,     3,     4,   513,    31,     7,   347,
  910.    266,     1,   350,   447,     4,     3,     6,     7,    51,     7,
  911.     83,    77,    12,    13,    14,    77,    82,    60,    61,    37,
  912.     82,     4,    78,     6,     7,    82,    82,   279,    28,    12,
  913.     13,    14,   279,    78,    78,   209,     3,     4,    82,   387,
  914.    388,    77,    51,    78,    77,    28,    83,    82,   322,    77,
  915.    348,    60,    61,    51,    78,     3,    27,   430,     1,     7,
  916.      3,     4,    60,   358,     9,     8,     9,   368,    11,    84,
  917.     78,   338,   339,   339,    82,    78,   424,   450,    78,    79,
  918.     60,   349,   356,    78,    51,   359,    29,    82,    37,    32,
  919.     79,    34,    35,    60,   368,    78,    79,    79,    41,    55,
  920.     56,    44,    58,    59,    60,    61,    49,    50,    51,    79,
  921.     78,    77,    55,    56,    82,    78,    59,    60,    61,    82,
  922.      1,    77,     3,     4,     5,     6,     7,   395,    79,    10,
  923.     77,    12,    13,    14,   308,   430,    79,    80,    81,    77,
  924.     83,     4,     5,     6,     7,    78,    79,    28,    39,    12,
  925.     13,    14,   420,     3,     4,   450,    77,     3,     4,    60,
  926.     61,     7,   430,    60,    78,    28,   461,   341,    82,   605,
  927.    543,    84,    60,    61,    60,    61,    77,   613,   430,   353,
  928.    537,    84,   450,   430,    60,    61,   559,    77,   561,    77,
  929.     77,    77,    60,    61,   462,   490,    77,    79,    37,   494,
  930.     84,   468,   469,   469,   378,    51,   501,   381,    82,   510,
  931.    508,    51,    52,    53,    60,    78,    78,    79,     1,    33,
  932.      3,   516,   396,    60,    61,     8,     9,    84,    11,   524,
  933.     49,    50,    51,    52,    53,     3,   510,    60,    61,   534,
  934.    414,    79,    78,   417,    78,    79,    29,    60,   543,    32,
  935.     39,    34,    35,    60,    61,    39,    82,    79,    41,   433,
  936.     84,    44,   436,     6,     7,    77,    49,    50,    51,    12,
  937.     13,    14,    55,    56,    79,   543,     1,    60,    37,     4,
  938.      5,     6,     7,   457,    77,    10,    39,    12,    13,    14,
  939.     47,    48,    49,    50,    51,    52,    53,    80,    81,   594,
  940.     83,    79,    60,    28,    60,    60,   480,    39,     1,   483,
  941.      3,     4,     5,     6,     7,     8,     9,    78,    11,    12,
  942.     13,    14,    15,     7,    17,    18,    19,    20,    21,    22,
  943.     23,    24,    25,    26,    27,    28,    29,    78,    39,    32,
  944.     78,    34,    35,   517,    78,    16,    37,     8,    41,    79,
  945.     60,    44,    77,    60,    78,   529,    49,    50,    51,    78,
  946.     82,    77,    55,    56,    17,    78,    77,    60,     4,     5,
  947.      6,     7,    78,   547,    77,    37,    12,    13,    14,     8,
  948.     77,     9,    78,    77,    60,    78,    79,    80,    81,    78,
  949.     83,     1,    28,     3,     4,     5,     6,     7,     8,     9,
  950.     78,    11,    12,    13,    14,    15,   580,    17,    18,    19,
  951.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  952.     78,    77,    32,    82,    34,    35,    77,     0,     5,     6,
  953.      7,    41,    78,    78,    44,    12,    13,    14,     0,    49,
  954.     50,    51,    78,     3,   165,    55,    56,   493,   192,    48,
  955.     60,     1,   387,    53,     4,     5,     6,     7,   413,   177,
  956.    378,   356,    12,    13,    14,   212,   215,   347,    78,   118,
  957.     80,    81,     1,    83,     3,     4,   387,    27,    28,     8,
  958.      9,    31,    11,   210,    53,   351,    15,    37,    17,    18,
  959.     19,    20,    21,    22,    23,    24,    25,    26,    27,   595,
  960.     29,   543,   331,    32,   543,    34,    35,   257,   597,    -1,
  961.     60,    61,    41,    55,    56,    44,    58,    59,    60,    61,
  962.     49,    50,    51,    -1,    -1,    -1,    55,    56,    78,    -1,
  963.     -1,    60,    82,    83,    -1,     4,     5,     6,     7,    -1,
  964.     -1,    -1,    -1,    12,    13,    14,    -1,    -1,    -1,    78,
  965.     79,    80,    81,     1,    83,     3,     4,    -1,    -1,    28,
  966.      8,     9,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
  967.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  968.     -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  969.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  970.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    78,
  971.     -1,    -1,    60,     1,    -1,    -1,     4,     5,     6,     7,
  972.     -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,    -1,
  973.     78,    79,    80,    81,     1,    83,     3,     4,    -1,    27,
  974.     28,     8,     9,    31,    11,    -1,    -1,    -1,    15,    37,
  975.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  976.     27,    -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,
  977.     -1,    -1,    60,    61,    41,    -1,    -1,    44,    -1,    -1,
  978.     -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,
  979.     78,    -1,    -1,    60,    82,    83,     3,     4,     5,     6,
  980.      7,    -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,
  981.     -1,    78,    -1,    80,    81,     1,    83,     3,     4,    -1,
  982.     -1,    28,     8,     9,    -1,    11,    -1,    -1,    -1,    15,
  983.     -1,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  984.     26,    27,    -1,    29,    51,    -1,    32,    -1,    34,    35,
  985.     -1,    -1,    -1,    60,    61,    41,    -1,    -1,    44,    -1,
  986.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  987.     56,    -1,    -1,     1,    60,     3,     4,    -1,     6,     7,
  988.      8,     9,    -1,    11,    12,    13,    14,    -1,    -1,    -1,
  989.     -1,    -1,    78,    -1,    80,    81,    -1,    83,    -1,    -1,
  990.     28,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  991.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  992.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,
  993.     -1,     1,    60,     3,     4,    -1,    -1,    -1,     8,     9,
  994.     -1,    11,    44,    45,    46,    47,    48,    49,    50,    51,
  995.     52,    53,    80,    81,    -1,    83,    -1,    -1,     4,    29,
  996.      6,     7,    32,    -1,    34,    35,    12,    13,    14,    -1,
  997.     -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,
  998.     50,    51,    28,    -1,    -1,    55,    56,    -1,    -1,    59,
  999.     60,    61,     1,    -1,     3,     4,    -1,    -1,    -1,     8,
  1000.      9,    -1,    11,    -1,    -1,    51,    -1,    -1,    -1,    79,
  1001.     80,    81,    -1,    83,    60,    61,    -1,    -1,    -1,    -1,
  1002.     29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,    -1,
  1003.     -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  1004.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,
  1005.     59,    60,    61,     1,    -1,    -1,     4,     5,     6,     7,
  1006.     -1,    -1,     3,    -1,    12,    13,    14,     8,     9,    -1,
  1007.     11,    80,    81,    -1,    83,    -1,    -1,    -1,    -1,    27,
  1008.     28,    -1,    -1,    31,    -1,    -1,    -1,    -1,    29,    37,
  1009.     -1,    32,    -1,    34,    35,    -1,     4,     5,     6,     7,
  1010.     41,    -1,    10,    44,    12,    13,    14,    -1,    49,    50,
  1011.     51,    -1,    -1,    -1,    55,    56,     3,    -1,    -1,    60,
  1012.     28,     8,     9,    -1,    11,    -1,    -1,    -1,    -1,    -1,
  1013.     78,    -1,    -1,    -1,    82,    83,    -1,    -1,    -1,    80,
  1014.     81,    -1,    29,    84,    -1,    32,    -1,    34,    35,    -1,
  1015.      4,     5,     6,     7,    41,    -1,    -1,    44,    12,    13,
  1016.     14,    -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,
  1017.      3,    -1,    -1,    60,    28,     8,     9,    -1,    11,    -1,
  1018.     -1,    -1,    -1,     3,    -1,    -1,    -1,    -1,     8,     9,
  1019.     -1,    11,    -1,    80,    81,    -1,    29,    84,    -1,    32,
  1020.     -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,    29,
  1021.     -1,    44,    32,    -1,    34,    35,    49,    50,    51,    -1,
  1022.     -1,    41,    55,    56,    44,    -1,    -1,    60,    -1,    49,
  1023.     50,    51,    -1,    -1,    -1,    55,    56,     3,    -1,    -1,
  1024.     60,    -1,     8,     9,    -1,    11,    -1,    80,    81,    -1,
  1025.     -1,    84,    46,    47,    48,    49,    50,    51,    52,    53,
  1026.     80,    81,    -1,    29,    84,    -1,    32,    -1,    34,    35,
  1027.     10,    -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,
  1028.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  1029.     56,    -1,    -1,    -1,    60,    -1,    36,    37,    38,    39,
  1030.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1031.     50,    51,    52,    53,    80,    81,    -1,    -1,    84,     3,
  1032.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  1033.     14,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1034.     24,    25,    26,    27,    28,    29,    -1,    -1,    32,    -1,
  1035.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1036.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,     3,
  1037.      4,    55,    56,    -1,     8,     9,    60,    11,    -1,    -1,
  1038.     -1,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1039.     24,    25,    26,    27,    78,    29,    80,    81,    32,    83,
  1040.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1041.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,     3,
  1042.     -1,    55,    56,    -1,     8,     9,    60,    11,    38,    -1,
  1043.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1044.     50,    51,    52,    53,    78,    29,    80,    81,    32,    83,
  1045.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1046.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,    -1,
  1047.     -1,    55,    56,    -1,    -1,    -1,    60,     3,     4,    -1,
  1048.      6,     7,     8,     9,    -1,    11,    12,    13,    14,    -1,
  1049.     -1,    -1,    -1,    -1,    -1,    -1,    80,    81,    -1,    83,
  1050.     -1,    -1,    28,    29,    -1,    -1,    32,    -1,    34,    35,
  1051.     -1,     3,    -1,    -1,    -1,    41,     8,     9,    44,    11,
  1052.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  1053.     56,    -1,    -1,    -1,    60,    -1,    -1,    29,    -1,    -1,
  1054.     32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,
  1055.     -1,    -1,    44,    -1,    80,    81,    -1,    49,    50,    51,
  1056.     -1,     3,    -1,    55,    56,    -1,     8,     9,    60,    11,
  1057.     -1,    -1,    -1,    -1,     3,    -1,    -1,    -1,    -1,     8,
  1058.      9,    -1,    11,    -1,    -1,    -1,    78,    29,    80,    81,
  1059.     32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,
  1060.     29,    -1,    44,    32,    -1,    34,    35,    49,    50,    51,
  1061.     -1,    -1,    41,    55,    56,    44,    -1,    -1,    60,    -1,
  1062.     49,    50,    51,    -1,     3,    -1,    55,    56,    -1,     8,
  1063.      9,    60,    11,    -1,    -1,    -1,    -1,    -1,    80,    81,
  1064.     45,    46,    47,    48,    49,    50,    51,    52,    53,    -1,
  1065.     29,    80,    81,    32,    -1,    34,    35,    -1,    -1,    -1,
  1066.     -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  1067.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,
  1068.      1,    60,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  1069.     -1,    12,    13,    14,    -1,    -1,    -1,    -1,    -1,    -1,
  1070.     -1,    80,    81,    -1,    -1,    -1,    27,    28,    -1,    -1,
  1071.     10,    36,    37,    38,    -1,    40,    41,    42,    43,    44,
  1072.     45,    46,    47,    48,    49,    50,    51,    52,    53,    -1,
  1073.     51,    -1,    -1,    -1,    -1,    -1,    36,    37,    38,    60,
  1074.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1075.     50,    51,    52,    53,    -1,    31,    -1,    78,    -1,    84,
  1076.     36,    37,    38,    -1,    40,    41,    42,    43,    44,    45,
  1077.     46,    47,    48,    49,    50,    51,    52,    53,    -1,    -1,
  1078.     -1,    -1,    -1,    -1,    84,    36,    37,    38,    39,    40,
  1079.     41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  1080.     51,    52,    53,    36,    37,    38,    -1,    40,    41,    42,
  1081.     43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  1082.     53,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1083.     50,    51,    52,    53,    42,    43,    44,    45,    46,    47,
  1084.     48,    49,    50,    51,    52,    53,    43,    44,    45,    46,
  1085.     47,    48,    49,    50,    51,    52,    53
  1086. };
  1087. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  1088. #line 3 "/usr/local/Install/supported/gnu/bison/sparc-sun-sunos4.1/lib/bison.simple"
  1089.  
  1090. /* Skeleton output parser for bison,
  1091.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  1092.  
  1093.    This program is free software; you can redistribute it and/or modify
  1094.    it under the terms of the GNU General Public License as published by
  1095.    the Free Software Foundation; either version 1, or (at your option)
  1096.    any later version.
  1097.  
  1098.    This program is distributed in the hope that it will be useful,
  1099.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  1100.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1101.    GNU General Public License for more details.
  1102.  
  1103.    You should have received a copy of the GNU General Public License
  1104.    along with this program; if not, write to the Free Software
  1105.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1106.  
  1107.  
  1108. #ifndef alloca
  1109. #ifdef __GNUC__
  1110. #define alloca __builtin_alloca
  1111. #else /* not GNU C.  */
  1112. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  1113. #include <alloca.h>
  1114. #else /* not sparc */
  1115. #if defined (MSDOS) && !defined (__TURBOC__)
  1116. #include <malloc.h>
  1117. #else /* not MSDOS, or __TURBOC__ */
  1118. #if defined(_AIX)
  1119. #include <malloc.h>
  1120.  #pragma alloca
  1121. #else /* not MSDOS, __TURBOC__, or _AIX */
  1122. #ifdef __hpux
  1123. #ifdef __cplusplus
  1124. extern "C" {
  1125. void *alloca (unsigned int);
  1126. };
  1127. #else /* not __cplusplus */
  1128. void *alloca (unsigned int);
  1129. #endif /* not __cplusplus */
  1130. #endif /* __hpux */
  1131. #endif /* not _AIX */
  1132. #endif /* not MSDOS, or __TURBOC__ */
  1133. #endif /* not sparc.  */
  1134. #endif /* not GNU C.  */
  1135. #endif /* alloca not defined.  */
  1136.  
  1137. /* This is the parser code that is written into each bison parser
  1138.   when the %semantic_parser declaration is not specified in the grammar.
  1139.   It was written by Richard Stallman by simplifying the hairy parser
  1140.   used when %semantic_parser is specified.  */
  1141.  
  1142. /* Note: there must be only one dollar sign in this file.
  1143.    It is replaced by the list of actions, each action
  1144.    as one case of the switch.  */
  1145.  
  1146. #define yyerrok        (yyerrstatus = 0)
  1147. #define yyclearin    (yychar = YYEMPTY)
  1148. #define YYEMPTY        -2
  1149. #define YYEOF        0
  1150. #define YYACCEPT    return(0)
  1151. #define YYABORT     return(1)
  1152. #define YYERROR        goto yyerrlab1
  1153. /* Like YYERROR except do call yyerror.
  1154.    This remains here temporarily to ease the
  1155.    transition to the new meaning of YYERROR, for GCC.
  1156.    Once GCC version 2 has supplanted version 1, this can go.  */
  1157. #define YYFAIL        goto yyerrlab
  1158. #define YYRECOVERING()  (!!yyerrstatus)
  1159. #define YYBACKUP(token, value) \
  1160. do                                \
  1161.   if (yychar == YYEMPTY && yylen == 1)                \
  1162.     { yychar = (token), yylval = (value);            \
  1163.       yychar1 = YYTRANSLATE (yychar);                \
  1164.       YYPOPSTACK;                        \
  1165.       goto yybackup;                        \
  1166.     }                                \
  1167.   else                                \
  1168.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  1169. while (0)
  1170.  
  1171. #define YYTERROR    1
  1172. #define YYERRCODE    256
  1173.  
  1174. #ifndef YYPURE
  1175. #define YYLEX        yylex()
  1176. #endif
  1177.  
  1178. #ifdef YYPURE
  1179. #ifdef YYLSP_NEEDED
  1180. #define YYLEX        yylex(&yylval, &yylloc)
  1181. #else
  1182. #define YYLEX        yylex(&yylval)
  1183. #endif
  1184. #endif
  1185.  
  1186. /* If nonreentrant, generate the variables here */
  1187.  
  1188. #ifndef YYPURE
  1189.  
  1190. int    yychar;            /*  the lookahead symbol        */
  1191. YYSTYPE    yylval;            /*  the semantic value of the        */
  1192.                 /*  lookahead symbol            */
  1193.  
  1194. #ifdef YYLSP_NEEDED
  1195. YYLTYPE yylloc;            /*  location data for the lookahead    */
  1196.                 /*  symbol                */
  1197. #endif
  1198.  
  1199. int yynerrs;            /*  number of parse errors so far       */
  1200. #endif  /* not YYPURE */
  1201.  
  1202. #if YYDEBUG != 0
  1203. int yydebug;            /*  nonzero means print parse trace    */
  1204. /* Since this is uninitialized, it does not stop multiple parsers
  1205.    from coexisting.  */
  1206. #endif
  1207.  
  1208. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  1209.  
  1210. #ifndef    YYINITDEPTH
  1211. #define YYINITDEPTH 200
  1212. #endif
  1213.  
  1214. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  1215.     (effective only if the built-in stack extension method is used).  */
  1216.  
  1217. #if YYMAXDEPTH == 0
  1218. #undef YYMAXDEPTH
  1219. #endif
  1220.  
  1221. #ifndef YYMAXDEPTH
  1222. #define YYMAXDEPTH 10000
  1223. #endif
  1224.  
  1225. /* Prevent warning if -Wstrict-prototypes.  */
  1226. #ifdef __GNUC__
  1227. int yyparse (void);
  1228. #endif
  1229.  
  1230. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  1231. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  1232. #else                /* not GNU C or C++ */
  1233. #ifndef __cplusplus
  1234.  
  1235. /* This is the most reliable way to avoid incompatibilities
  1236.    in available built-in functions on various systems.  */
  1237. static void
  1238. __yy_bcopy (from, to, count)
  1239.      char *from;
  1240.      char *to;
  1241.      int count;
  1242. {
  1243.   register char *f = from;
  1244.   register char *t = to;
  1245.   register int i = count;
  1246.  
  1247.   while (i-- > 0)
  1248.     *t++ = *f++;
  1249. }
  1250.  
  1251. #else /* __cplusplus */
  1252.  
  1253. /* This is the most reliable way to avoid incompatibilities
  1254.    in available built-in functions on various systems.  */
  1255. static void
  1256. __yy_bcopy (char *from, char *to, int count)
  1257. {
  1258.   register char *f = from;
  1259.   register char *t = to;
  1260.   register int i = count;
  1261.  
  1262.   while (i-- > 0)
  1263.     *t++ = *f++;
  1264. }
  1265.  
  1266. #endif
  1267. #endif
  1268.  
  1269. #line 184 "/usr/local/Install/supported/gnu/bison/sparc-sun-sunos4.1/lib/bison.simple"
  1270. int
  1271. yyparse()
  1272. {
  1273.   register int yystate;
  1274.   register int yyn;
  1275.   register short *yyssp;
  1276.   register YYSTYPE *yyvsp;
  1277.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  1278.   int yychar1;        /*  lookahead token as an internal (translated) token number */
  1279.  
  1280.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  1281.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  1282.  
  1283.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  1284.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  1285.  
  1286. #ifdef YYLSP_NEEDED
  1287.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  1288.   YYLTYPE *yyls = yylsa;
  1289.   YYLTYPE *yylsp;
  1290.  
  1291. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  1292. #else
  1293. #define YYPOPSTACK   (yyvsp--, yyssp--)
  1294. #endif
  1295.  
  1296.   int yystacksize = YYINITDEPTH;
  1297.  
  1298. #ifdef YYPURE
  1299.   int yychar;
  1300.   YYSTYPE yylval;
  1301.   int yynerrs;
  1302. #ifdef YYLSP_NEEDED
  1303.   YYLTYPE yylloc;
  1304. #endif
  1305. #endif
  1306.  
  1307.   YYSTYPE yyval;        /*  the variable used to return        */
  1308.                 /*  semantic values from the action    */
  1309.                 /*  routines                */
  1310.  
  1311.   int yylen;
  1312.  
  1313. #if YYDEBUG != 0
  1314.   if (yydebug)
  1315.     fprintf(stderr, "Starting parse\n");
  1316. #endif
  1317.  
  1318.   yystate = 0;
  1319.   yyerrstatus = 0;
  1320.   yynerrs = 0;
  1321.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  1322.  
  1323.   /* Initialize stack pointers.
  1324.      Waste one element of value and location stack
  1325.      so that they stay on the same level as the state stack.
  1326.      The wasted elements are never initialized.  */
  1327.  
  1328.   yyssp = yyss - 1;
  1329.   yyvsp = yyvs;
  1330. #ifdef YYLSP_NEEDED
  1331.   yylsp = yyls;
  1332. #endif
  1333.  
  1334. /* Push a new state, which is found in  yystate  .  */
  1335. /* In all cases, when you get here, the value and location stacks
  1336.    have just been pushed. so pushing a state here evens the stacks.  */
  1337. yynewstate:
  1338.  
  1339.   *++yyssp = yystate;
  1340.  
  1341.   if (yyssp >= yyss + yystacksize - 1)
  1342.     {
  1343.       /* Give user a chance to reallocate the stack */
  1344.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  1345.       YYSTYPE *yyvs1 = yyvs;
  1346.       short *yyss1 = yyss;
  1347. #ifdef YYLSP_NEEDED
  1348.       YYLTYPE *yyls1 = yyls;
  1349. #endif
  1350.  
  1351.       /* Get the current used size of the three stacks, in elements.  */
  1352.       int size = yyssp - yyss + 1;
  1353.  
  1354. #ifdef yyoverflow
  1355.       /* Each stack pointer address is followed by the size of
  1356.      the data in use in that stack, in bytes.  */
  1357.       yyoverflow("parser stack overflow",
  1358.          &yyss1, size * sizeof (*yyssp),
  1359.          &yyvs1, size * sizeof (*yyvsp),
  1360. #ifdef YYLSP_NEEDED
  1361.          &yyls1, size * sizeof (*yylsp),
  1362. #endif
  1363.          &yystacksize);
  1364.  
  1365.       yyss = yyss1; yyvs = yyvs1;
  1366. #ifdef YYLSP_NEEDED
  1367.       yyls = yyls1;
  1368. #endif
  1369. #else /* no yyoverflow */
  1370.       /* Extend the stack our own way.  */
  1371.       if (yystacksize >= YYMAXDEPTH)
  1372.     {
  1373.       yyerror("parser stack overflow");
  1374.       return 2;
  1375.     }
  1376.       yystacksize *= 2;
  1377.       if (yystacksize > YYMAXDEPTH)
  1378.     yystacksize = YYMAXDEPTH;
  1379.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  1380.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  1381.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  1382.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  1383. #ifdef YYLSP_NEEDED
  1384.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  1385.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  1386. #endif
  1387. #endif /* no yyoverflow */
  1388.  
  1389.       yyssp = yyss + size - 1;
  1390.       yyvsp = yyvs + size - 1;
  1391. #ifdef YYLSP_NEEDED
  1392.       yylsp = yyls + size - 1;
  1393. #endif
  1394.  
  1395. #if YYDEBUG != 0
  1396.       if (yydebug)
  1397.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  1398. #endif
  1399.  
  1400.       if (yyssp >= yyss + yystacksize - 1)
  1401.     YYABORT;
  1402.     }
  1403.  
  1404. #if YYDEBUG != 0
  1405.   if (yydebug)
  1406.     fprintf(stderr, "Entering state %d\n", yystate);
  1407. #endif
  1408.  
  1409.   goto yybackup;
  1410.  yybackup:
  1411.  
  1412. /* Do appropriate processing given the current state.  */
  1413. /* Read a lookahead token if we need one and don't already have one.  */
  1414. /* yyresume: */
  1415.  
  1416.   /* First try to decide what to do without reference to lookahead token.  */
  1417.  
  1418.   yyn = yypact[yystate];
  1419.   if (yyn == YYFLAG)
  1420.     goto yydefault;
  1421.  
  1422.   /* Not known => get a lookahead token if don't already have one.  */
  1423.  
  1424.   /* yychar is either YYEMPTY or YYEOF
  1425.      or a valid token in external form.  */
  1426.  
  1427.   if (yychar == YYEMPTY)
  1428.     {
  1429. #if YYDEBUG != 0
  1430.       if (yydebug)
  1431.     fprintf(stderr, "Reading a token: ");
  1432. #endif
  1433.       yychar = YYLEX;
  1434.     }
  1435.  
  1436.   /* Convert token to internal form (in yychar1) for indexing tables with */
  1437.  
  1438.   if (yychar <= 0)        /* This means end of input. */
  1439.     {
  1440.       yychar1 = 0;
  1441.       yychar = YYEOF;        /* Don't call YYLEX any more */
  1442.  
  1443. #if YYDEBUG != 0
  1444.       if (yydebug)
  1445.     fprintf(stderr, "Now at end of input.\n");
  1446. #endif
  1447.     }
  1448.   else
  1449.     {
  1450.       yychar1 = YYTRANSLATE(yychar);
  1451.  
  1452. #if YYDEBUG != 0
  1453.       if (yydebug)
  1454.     {
  1455.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  1456.       /* Give the individual parser a way to print the precise meaning
  1457.          of a token, for further debugging info.  */
  1458. #ifdef YYPRINT
  1459.       YYPRINT (stderr, yychar, yylval);
  1460. #endif
  1461.       fprintf (stderr, ")\n");
  1462.     }
  1463. #endif
  1464.     }
  1465.  
  1466.   yyn += yychar1;
  1467.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  1468.     goto yydefault;
  1469.  
  1470.   yyn = yytable[yyn];
  1471.  
  1472.   /* yyn is what to do for this token type in this state.
  1473.      Negative => reduce, -yyn is rule number.
  1474.      Positive => shift, yyn is new state.
  1475.        New state is final state => don't bother to shift,
  1476.        just return success.
  1477.      0, or most negative number => error.  */
  1478.  
  1479.   if (yyn < 0)
  1480.     {
  1481.       if (yyn == YYFLAG)
  1482.     goto yyerrlab;
  1483.       yyn = -yyn;
  1484.       goto yyreduce;
  1485.     }
  1486.   else if (yyn == 0)
  1487.     goto yyerrlab;
  1488.  
  1489.   if (yyn == YYFINAL)
  1490.     YYACCEPT;
  1491.  
  1492.   /* Shift the lookahead token.  */
  1493.  
  1494. #if YYDEBUG != 0
  1495.   if (yydebug)
  1496.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  1497. #endif
  1498.  
  1499.   /* Discard the token being shifted unless it is eof.  */
  1500.   if (yychar != YYEOF)
  1501.     yychar = YYEMPTY;
  1502.  
  1503.   *++yyvsp = yylval;
  1504. #ifdef YYLSP_NEEDED
  1505.   *++yylsp = yylloc;
  1506. #endif
  1507.  
  1508.   /* count tokens shifted since error; after three, turn off error status.  */
  1509.   if (yyerrstatus) yyerrstatus--;
  1510.  
  1511.   yystate = yyn;
  1512.   goto yynewstate;
  1513.  
  1514. /* Do the default action for the current state.  */
  1515. yydefault:
  1516.  
  1517.   yyn = yydefact[yystate];
  1518.   if (yyn == 0)
  1519.     goto yyerrlab;
  1520.  
  1521. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  1522. yyreduce:
  1523.   yylen = yyr2[yyn];
  1524.   yyval = yyvsp[1-yylen]; /* implement default value of the action */
  1525.  
  1526. #if YYDEBUG != 0
  1527.   if (yydebug)
  1528.     {
  1529.       int i;
  1530.  
  1531.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  1532.            yyn, yyrline[yyn]);
  1533.  
  1534.       /* Print the symbols being reduced, and their result.  */
  1535.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  1536.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  1537.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  1538.     }
  1539. #endif
  1540.  
  1541.  
  1542.   switch (yyn) {
  1543.  
  1544. case 1:
  1545. #line 219 "c-parse.y"
  1546. { if (pedantic)
  1547.             pedwarn ("ANSI C forbids an empty source file");
  1548.         ;
  1549.     break;}
  1550. case 2:
  1551. #line 223 "c-parse.y"
  1552. {
  1553.           /* In case there were missing closebraces,
  1554.              get us back to the global binding level.  */
  1555.           while (! global_bindings_p ())
  1556.             poplevel (0, 0, 0);
  1557.         ;
  1558.     break;}
  1559. case 3:
  1560. #line 236 "c-parse.y"
  1561. {yyval.ttype = NULL_TREE; ;
  1562.     break;}
  1563. case 5:
  1564. #line 237 "c-parse.y"
  1565. {yyval.ttype = NULL_TREE; ;
  1566.     break;}
  1567. case 9:
  1568. #line 244 "c-parse.y"
  1569. { STRIP_NOPS (yyvsp[-2].ttype);
  1570.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  1571.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  1572.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  1573.             assemble_asm (yyvsp[-2].ttype);
  1574.           else
  1575.             error ("argument of `asm' is not a constant string"); ;
  1576.     break;}
  1577. case 10:
  1578. #line 255 "c-parse.y"
  1579. { if (pedantic)
  1580.             error ("ANSI C forbids data definition with no type or storage class");
  1581.           else if (!flag_traditional)
  1582.             warning ("data definition has no type or storage class"); ;
  1583.     break;}
  1584. case 11:
  1585. #line 260 "c-parse.y"
  1586. {;
  1587.     break;}
  1588. case 12:
  1589. #line 262 "c-parse.y"
  1590. {;
  1591.     break;}
  1592. case 13:
  1593. #line 264 "c-parse.y"
  1594. { pedwarn ("empty declaration"); ;
  1595.     break;}
  1596. case 14:
  1597. #line 266 "c-parse.y"
  1598. { shadow_tag (yyvsp[-1].ttype); ;
  1599.     break;}
  1600. case 17:
  1601. #line 270 "c-parse.y"
  1602. { if (pedantic)
  1603.             pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
  1604.     break;}
  1605. case 18:
  1606. #line 276 "c-parse.y"
  1607. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  1608.             YYERROR1;
  1609.           reinit_parse_for_function (); ;
  1610.     break;}
  1611. case 19:
  1612. #line 280 "c-parse.y"
  1613. { store_parm_decls (); ;
  1614.     break;}
  1615. case 20:
  1616. #line 282 "c-parse.y"
  1617. { finish_function (0); ;
  1618.     break;}
  1619. case 21:
  1620. #line 284 "c-parse.y"
  1621. { ;
  1622.     break;}
  1623. case 22:
  1624. #line 286 "c-parse.y"
  1625. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  1626.             YYERROR1;
  1627.           reinit_parse_for_function (); ;
  1628.     break;}
  1629. case 23:
  1630. #line 290 "c-parse.y"
  1631. { store_parm_decls (); ;
  1632.     break;}
  1633. case 24:
  1634. #line 292 "c-parse.y"
  1635. { finish_function (0); ;
  1636.     break;}
  1637. case 25:
  1638. #line 294 "c-parse.y"
  1639. { ;
  1640.     break;}
  1641. case 26:
  1642. #line 296 "c-parse.y"
  1643. { if (! start_function (NULL_TREE, yyvsp[0].ttype, 0))
  1644.             YYERROR1;
  1645.           reinit_parse_for_function (); ;
  1646.     break;}
  1647. case 27:
  1648. #line 300 "c-parse.y"
  1649. { store_parm_decls (); ;
  1650.     break;}
  1651. case 28:
  1652. #line 302 "c-parse.y"
  1653. { finish_function (0); ;
  1654.     break;}
  1655. case 29:
  1656. #line 304 "c-parse.y"
  1657. { ;
  1658.     break;}
  1659. case 32:
  1660. #line 313 "c-parse.y"
  1661. { yyval.code = ADDR_EXPR; ;
  1662.     break;}
  1663. case 33:
  1664. #line 315 "c-parse.y"
  1665. { yyval.code = NEGATE_EXPR; ;
  1666.     break;}
  1667. case 34:
  1668. #line 317 "c-parse.y"
  1669. { yyval.code = CONVERT_EXPR; ;
  1670.     break;}
  1671. case 35:
  1672. #line 319 "c-parse.y"
  1673. { yyval.code = PREINCREMENT_EXPR; ;
  1674.     break;}
  1675. case 36:
  1676. #line 321 "c-parse.y"
  1677. { yyval.code = PREDECREMENT_EXPR; ;
  1678.     break;}
  1679. case 37:
  1680. #line 323 "c-parse.y"
  1681. { yyval.code = BIT_NOT_EXPR; ;
  1682.     break;}
  1683. case 38:
  1684. #line 325 "c-parse.y"
  1685. { yyval.code = TRUTH_NOT_EXPR; ;
  1686.     break;}
  1687. case 39:
  1688. #line 329 "c-parse.y"
  1689. { yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
  1690.     break;}
  1691. case 40:
  1692. #line 334 "c-parse.y"
  1693. { yyval.ttype = NULL_TREE; ;
  1694.     break;}
  1695. case 42:
  1696. #line 340 "c-parse.y"
  1697. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  1698.     break;}
  1699. case 43:
  1700. #line 342 "c-parse.y"
  1701. { chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  1702.     break;}
  1703. case 45:
  1704. #line 348 "c-parse.y"
  1705. { yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  1706.     break;}
  1707. case 46:
  1708. #line 351 "c-parse.y"
  1709. { yyvsp[0].itype = pedantic;
  1710.           pedantic = 0; ;
  1711.     break;}
  1712. case 47:
  1713. #line 354 "c-parse.y"
  1714. { yyval.ttype = yyvsp[0].ttype;
  1715.           pedantic = yyvsp[-2].itype; ;
  1716.     break;}
  1717. case 48:
  1718. #line 357 "c-parse.y"
  1719. { yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
  1720.           overflow_warning (yyval.ttype); ;
  1721.     break;}
  1722. case 49:
  1723. #line 361 "c-parse.y"
  1724. { tree label = lookup_label (yyvsp[0].ttype);
  1725.           if (label == 0)
  1726.             yyval.ttype = null_pointer_node;
  1727.           else
  1728.             {
  1729.               TREE_USED (label) = 1;
  1730.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  1731.               TREE_CONSTANT (yyval.ttype) = 1;
  1732.             }
  1733.         ;
  1734.     break;}
  1735. case 50:
  1736. #line 387 "c-parse.y"
  1737. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  1738.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  1739.             error ("`sizeof' applied to a bit-field");
  1740.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  1741.     break;}
  1742. case 51:
  1743. #line 392 "c-parse.y"
  1744. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  1745.     break;}
  1746. case 52:
  1747. #line 394 "c-parse.y"
  1748. { yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
  1749.     break;}
  1750. case 53:
  1751. #line 396 "c-parse.y"
  1752. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  1753.     break;}
  1754. case 54:
  1755. #line 398 "c-parse.y"
  1756. { yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
  1757.     break;}
  1758. case 55:
  1759. #line 400 "c-parse.y"
  1760. { yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
  1761.     break;}
  1762. case 57:
  1763. #line 406 "c-parse.y"
  1764. { tree type = groktypename (yyvsp[-2].ttype);
  1765.           yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
  1766.     break;}
  1767. case 58:
  1768. #line 409 "c-parse.y"
  1769. { start_init (NULL_TREE, NULL, 0);
  1770.           yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
  1771.           really_start_incremental_init (yyvsp[-2].ttype); ;
  1772.     break;}
  1773. case 59:
  1774. #line 413 "c-parse.y"
  1775. { char *name;
  1776.           tree result = pop_init_level (0);
  1777.           tree type = yyvsp[-5].ttype;
  1778.           finish_init ();
  1779.  
  1780.           if (pedantic)
  1781.             pedwarn ("ANSI C forbids constructor expressions");
  1782.           if (TYPE_NAME (type) != 0)
  1783.             {
  1784.               if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  1785.             name = IDENTIFIER_POINTER (TYPE_NAME (type));
  1786.               else
  1787.             name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
  1788.             }
  1789.           else
  1790.             name = "";
  1791.           yyval.ttype = result;
  1792.           if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  1793.             {
  1794.               int failure = complete_array_type (type, yyval.ttype, 1);
  1795.               if (failure)
  1796.             abort ();
  1797.             }
  1798.         ;
  1799.     break;}
  1800. case 61:
  1801. #line 442 "c-parse.y"
  1802. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1803.     break;}
  1804. case 62:
  1805. #line 444 "c-parse.y"
  1806. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1807.     break;}
  1808. case 63:
  1809. #line 446 "c-parse.y"
  1810. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1811.     break;}
  1812. case 64:
  1813. #line 448 "c-parse.y"
  1814. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1815.     break;}
  1816. case 65:
  1817. #line 450 "c-parse.y"
  1818. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1819.     break;}
  1820. case 66:
  1821. #line 452 "c-parse.y"
  1822. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1823.     break;}
  1824. case 67:
  1825. #line 454 "c-parse.y"
  1826. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1827.     break;}
  1828. case 68:
  1829. #line 456 "c-parse.y"
  1830. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1831.     break;}
  1832. case 69:
  1833. #line 458 "c-parse.y"
  1834. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1835.     break;}
  1836. case 70:
  1837. #line 460 "c-parse.y"
  1838. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1839.     break;}
  1840. case 71:
  1841. #line 462 "c-parse.y"
  1842. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1843.     break;}
  1844. case 72:
  1845. #line 464 "c-parse.y"
  1846. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1847.     break;}
  1848. case 73:
  1849. #line 466 "c-parse.y"
  1850. { yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1851.     break;}
  1852. case 74:
  1853. #line 468 "c-parse.y"
  1854. { yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1855.     break;}
  1856. case 75:
  1857. #line 470 "c-parse.y"
  1858. { yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1859.     break;}
  1860. case 76:
  1861. #line 472 "c-parse.y"
  1862. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
  1863.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  1864.     break;}
  1865. case 77:
  1866. #line 475 "c-parse.y"
  1867. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
  1868.           /* This inhibits warnings in truthvalue_conversion.  */
  1869.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  1870.     break;}
  1871. case 78:
  1872. #line 482 "c-parse.y"
  1873. {
  1874.           tree context;
  1875.  
  1876.           yyval.ttype = lastiddecl;
  1877.           if (!yyval.ttype || yyval.ttype == error_mark_node)
  1878.             {
  1879.               if (yychar == YYEMPTY)
  1880.             yychar = YYLEX;
  1881.               if (yychar == '(')
  1882.             {
  1883.                 {
  1884.                   /* Ordinary implicit function declaration.  */
  1885.                   yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  1886.                   assemble_external (yyval.ttype);
  1887.                   TREE_USED (yyval.ttype) = 1;
  1888.                 }
  1889.             }
  1890.               else if (current_function_decl == 0)
  1891.             {
  1892.               error ("`%s' undeclared here (not in a function)",
  1893.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  1894.               yyval.ttype = error_mark_node;
  1895.             }
  1896.               else
  1897.             {
  1898.                 {
  1899.                   if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
  1900.                   || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
  1901.                 {
  1902.                   error ("`%s' undeclared (first use this function)",
  1903.                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  1904.  
  1905.                   if (! undeclared_variable_notice)
  1906.                     {
  1907.                       error ("(Each undeclared identifier is reported only once");
  1908.                       error ("for each function it appears in.)");
  1909.                       undeclared_variable_notice = 1;
  1910.                     }
  1911.                 }
  1912.                   yyval.ttype = error_mark_node;
  1913.                   /* Prevent repeated error messages.  */
  1914.                   IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  1915.                   IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
  1916.                 }
  1917.             }
  1918.             }
  1919.           else if (TREE_TYPE (yyval.ttype) == error_mark_node)
  1920.             yyval.ttype = error_mark_node;
  1921.           else if (C_DECL_ANTICIPATED (yyval.ttype))
  1922.             {
  1923.               /* The first time we see a build-in function used,
  1924.              if it has not been declared.  */
  1925.               C_DECL_ANTICIPATED (yyval.ttype) = 0;
  1926.               if (yychar == YYEMPTY)
  1927.             yychar = YYLEX;
  1928.               if (yychar == '(')
  1929.             {
  1930.               /* Omit the implicit declaration we
  1931.                  would ordinarily do, so we don't lose
  1932.                  the actual built in type.
  1933.                  But print a diagnostic for the mismatch.  */
  1934.                 if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
  1935.                   error ("`%s' implicitly declared as function",
  1936.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1937.               else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
  1938.                     != TYPE_MODE (integer_type_node))
  1939.                    && (TREE_TYPE (TREE_TYPE (yyval.ttype))
  1940.                        != void_type_node))
  1941.                 pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
  1942.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1943.               /* If it really returns void, change that to int.  */
  1944.               if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
  1945.                 TREE_TYPE (yyval.ttype)
  1946.                   = build_function_type (integer_type_node,
  1947.                              TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
  1948.             }
  1949.               else
  1950.             pedwarn ("built-in function `%s' used without declaration",
  1951.                  IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1952.  
  1953.               /* Do what we would ordinarily do when a fn is used.  */
  1954.               assemble_external (yyval.ttype);
  1955.               TREE_USED (yyval.ttype) = 1;
  1956.             }
  1957.           else
  1958.             {
  1959.               assemble_external (yyval.ttype);
  1960.               TREE_USED (yyval.ttype) = 1;
  1961.             }
  1962.  
  1963.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  1964.             {
  1965.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  1966.               /* This is to prevent an enum whose value is 0
  1967.              from being considered a null pointer constant.  */
  1968.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  1969.               TREE_CONSTANT (yyval.ttype) = 1;
  1970.             }
  1971.         ;
  1972.     break;}
  1973. case 80:
  1974. #line 583 "c-parse.y"
  1975. { yyval.ttype = combine_strings (yyvsp[0].ttype); ;
  1976.     break;}
  1977. case 81:
  1978. #line 585 "c-parse.y"
  1979. { char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
  1980.           if (class == 'e' || class == '1'
  1981.               || class == '2' || class == '<')
  1982.             C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
  1983.           yyval.ttype = yyvsp[-1].ttype; ;
  1984.     break;}
  1985. case 82:
  1986. #line 591 "c-parse.y"
  1987. { yyval.ttype = error_mark_node; ;
  1988.     break;}
  1989. case 83:
  1990. #line 593 "c-parse.y"
  1991. { if (current_function_decl == 0)
  1992.             {
  1993.               error ("braced-group within expression allowed only inside a function");
  1994.               YYERROR;
  1995.             }
  1996.           /* We must force a BLOCK for this level
  1997.              so that, if it is not expanded later,
  1998.              there is a way to turn off the entire subtree of blocks
  1999.              that are contained in it.  */
  2000.           keep_next_level ();
  2001.           push_iterator_stack ();
  2002.           push_label_level ();
  2003.           yyval.ttype = expand_start_stmt_expr (); ;
  2004.     break;}
  2005. case 84:
  2006. #line 607 "c-parse.y"
  2007. { tree rtl_exp;
  2008.           if (pedantic)
  2009.             pedwarn ("ANSI C forbids braced-groups within expressions");
  2010.           pop_iterator_stack ();
  2011.           pop_label_level ();
  2012.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  2013.           /* The statements have side effects, so the group does.  */
  2014.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  2015.  
  2016.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  2017.             {
  2018.               /* Make a BIND_EXPR for the BLOCK already made.  */
  2019.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  2020.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  2021.               /* Remove the block from the tree at this point.
  2022.              It gets put back at the proper place
  2023.              when the BIND_EXPR is expanded.  */
  2024.               delete_block (yyvsp[-1].ttype);
  2025.             }
  2026.           else
  2027.             yyval.ttype = yyvsp[-1].ttype;
  2028.         ;
  2029.     break;}
  2030. case 85:
  2031. #line 630 "c-parse.y"
  2032. { yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2033.     break;}
  2034. case 86:
  2035. #line 632 "c-parse.y"
  2036. { yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2037.     break;}
  2038. case 87:
  2039. #line 634 "c-parse.y"
  2040. {
  2041.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2042.         ;
  2043.     break;}
  2044. case 88:
  2045. #line 638 "c-parse.y"
  2046. {
  2047.                   tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
  2048.  
  2049.                     yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2050.         ;
  2051.     break;}
  2052. case 89:
  2053. #line 644 "c-parse.y"
  2054. { yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2055.     break;}
  2056. case 90:
  2057. #line 646 "c-parse.y"
  2058. { yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2059.     break;}
  2060. case 92:
  2061. #line 653 "c-parse.y"
  2062. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2063.     break;}
  2064. case 95:
  2065. #line 662 "c-parse.y"
  2066. { c_mark_varargs ();
  2067.           if (pedantic)
  2068.             pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
  2069.     break;}
  2070. case 96:
  2071. #line 672 "c-parse.y"
  2072. { ;
  2073.     break;}
  2074. case 101:
  2075. #line 684 "c-parse.y"
  2076. { current_declspecs = TREE_VALUE (declspec_stack);
  2077.           declspec_stack = TREE_CHAIN (declspec_stack);
  2078.           resume_momentary (yyvsp[-2].itype); ;
  2079.     break;}
  2080. case 102:
  2081. #line 688 "c-parse.y"
  2082. { current_declspecs = TREE_VALUE (declspec_stack);
  2083.           declspec_stack = TREE_CHAIN (declspec_stack);
  2084.           resume_momentary (yyvsp[-2].itype); ;
  2085.     break;}
  2086. case 103:
  2087. #line 692 "c-parse.y"
  2088. { shadow_tag_warned (yyvsp[-1].ttype, 1);
  2089.           pedwarn ("empty declaration"); ;
  2090.     break;}
  2091. case 104:
  2092. #line 695 "c-parse.y"
  2093. { pedwarn ("empty declaration"); ;
  2094.     break;}
  2095. case 105:
  2096. #line 704 "c-parse.y"
  2097. { ;
  2098.     break;}
  2099. case 110:
  2100. #line 719 "c-parse.y"
  2101. { yyval.itype = suspend_momentary ();
  2102.           pending_xref_error ();
  2103.           declspec_stack = tree_cons (NULL_TREE, current_declspecs,
  2104.                           declspec_stack);
  2105.           current_declspecs = yyvsp[0].ttype; ;
  2106.     break;}
  2107. case 111:
  2108. #line 728 "c-parse.y"
  2109. { current_declspecs = TREE_VALUE (declspec_stack);
  2110.           declspec_stack = TREE_CHAIN (declspec_stack);
  2111.           resume_momentary (yyvsp[-2].itype); ;
  2112.     break;}
  2113. case 112:
  2114. #line 732 "c-parse.y"
  2115. { current_declspecs = TREE_VALUE (declspec_stack);
  2116.           declspec_stack = TREE_CHAIN (declspec_stack);
  2117.           resume_momentary (yyvsp[-2].itype); ;
  2118.     break;}
  2119. case 113:
  2120. #line 736 "c-parse.y"
  2121. { current_declspecs = TREE_VALUE (declspec_stack);
  2122.           declspec_stack = TREE_CHAIN (declspec_stack);
  2123.           resume_momentary (yyvsp[-1].itype); ;
  2124.     break;}
  2125. case 114:
  2126. #line 740 "c-parse.y"
  2127. { current_declspecs = TREE_VALUE (declspec_stack);
  2128.           declspec_stack = TREE_CHAIN (declspec_stack);
  2129.           resume_momentary (yyvsp[-1].itype); ;
  2130.     break;}
  2131. case 115:
  2132. #line 744 "c-parse.y"
  2133. { shadow_tag (yyvsp[-1].ttype); ;
  2134.     break;}
  2135. case 116:
  2136. #line 746 "c-parse.y"
  2137. { pedwarn ("empty declaration"); ;
  2138.     break;}
  2139. case 117:
  2140. #line 755 "c-parse.y"
  2141. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2142.     break;}
  2143. case 118:
  2144. #line 757 "c-parse.y"
  2145. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2146.     break;}
  2147. case 119:
  2148. #line 761 "c-parse.y"
  2149. { yyval.ttype = NULL_TREE; ;
  2150.     break;}
  2151. case 120:
  2152. #line 763 "c-parse.y"
  2153. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2154.     break;}
  2155. case 121:
  2156. #line 765 "c-parse.y"
  2157. { if (extra_warnings)
  2158.             warning ("`%s' is not at beginning of declaration",
  2159.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2160.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2161.     break;}
  2162. case 122:
  2163. #line 777 "c-parse.y"
  2164. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  2165.           TREE_STATIC (yyval.ttype) = 1; ;
  2166.     break;}
  2167. case 123:
  2168. #line 780 "c-parse.y"
  2169. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2170.     break;}
  2171. case 124:
  2172. #line 782 "c-parse.y"
  2173. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2174.           TREE_STATIC (yyval.ttype) = 1; ;
  2175.     break;}
  2176. case 125:
  2177. #line 785 "c-parse.y"
  2178. { if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
  2179.             warning ("`%s' is not at beginning of declaration",
  2180.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2181.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2182.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  2183.     break;}
  2184. case 126:
  2185. #line 799 "c-parse.y"
  2186. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2187.     break;}
  2188. case 127:
  2189. #line 801 "c-parse.y"
  2190. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2191.     break;}
  2192. case 128:
  2193. #line 805 "c-parse.y"
  2194. { yyval.ttype = NULL_TREE; ;
  2195.     break;}
  2196. case 129:
  2197. #line 807 "c-parse.y"
  2198. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2199.     break;}
  2200. case 132:
  2201. #line 817 "c-parse.y"
  2202. { /* For a typedef name, record the meaning, not the name.
  2203.              In case of `foo foo, bar;'.  */
  2204.           yyval.ttype = lookup_name (yyvsp[0].ttype); ;
  2205.     break;}
  2206. case 133:
  2207. #line 821 "c-parse.y"
  2208. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
  2209.     break;}
  2210. case 134:
  2211. #line 823 "c-parse.y"
  2212. { yyval.ttype = groktypename (yyvsp[-1].ttype); ;
  2213.     break;}
  2214. case 142:
  2215. #line 845 "c-parse.y"
  2216. { yyval.ttype = NULL_TREE; ;
  2217.     break;}
  2218. case 143:
  2219. #line 847 "c-parse.y"
  2220. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
  2221.           yyval.ttype = yyvsp[-1].ttype;
  2222.         ;
  2223.     break;}
  2224. case 144:
  2225. #line 854 "c-parse.y"
  2226. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2227.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2228.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2229.     break;}
  2230. case 145:
  2231. #line 859 "c-parse.y"
  2232. { finish_init ();
  2233.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2234.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2235.     break;}
  2236. case 146:
  2237. #line 863 "c-parse.y"
  2238. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2239.           decl_attributes (d, yyvsp[0].ttype);
  2240.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2241.     break;}
  2242. case 147:
  2243. #line 870 "c-parse.y"
  2244. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2245.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2246.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2247.     break;}
  2248. case 148:
  2249. #line 875 "c-parse.y"
  2250. { finish_init ();
  2251.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2252.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2253.     break;}
  2254. case 149:
  2255. #line 879 "c-parse.y"
  2256. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2257.           decl_attributes (d, yyvsp[0].ttype);
  2258.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2259.     break;}
  2260. case 150:
  2261. #line 887 "c-parse.y"
  2262. { yyval.ttype = NULL_TREE; ;
  2263.     break;}
  2264. case 151:
  2265. #line 889 "c-parse.y"
  2266. { yyval.ttype = yyvsp[-2].ttype; ;
  2267.     break;}
  2268. case 152:
  2269. #line 894 "c-parse.y"
  2270. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2271.     break;}
  2272. case 153:
  2273. #line 896 "c-parse.y"
  2274. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2275.     break;}
  2276. case 154:
  2277. #line 901 "c-parse.y"
  2278. { if (strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "packed")
  2279.           && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "noreturn"))
  2280.         warning ("`%s' attribute directive ignored",
  2281.              IDENTIFIER_POINTER (yyvsp[0].ttype));
  2282.       yyval.ttype = yyvsp[0].ttype; ;
  2283.     break;}
  2284. case 156:
  2285. #line 908 "c-parse.y"
  2286. { /* If not "mode (m)", then issue warning.  */
  2287.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "mode") != 0)
  2288.         {
  2289.           warning ("`%s' attribute directive ignored",
  2290.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2291.           yyval.ttype = yyvsp[-3].ttype;
  2292.         }
  2293.       else
  2294.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2295.     break;}
  2296. case 157:
  2297. #line 918 "c-parse.y"
  2298. { /* if not "aligned(n)", then issue warning */
  2299.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "aligned") != 0
  2300.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2301.         {
  2302.           warning ("`%s' attribute directive ignored",
  2303.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2304.           yyval.ttype = yyvsp[-3].ttype;
  2305.         }
  2306.       else
  2307.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2308.     break;}
  2309. case 158:
  2310. #line 929 "c-parse.y"
  2311. { /* if not "format(...)", then issue warning */
  2312.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-7].ttype), "format") != 0
  2313.           || TREE_CODE (yyvsp[-3].ttype) != INTEGER_CST
  2314.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2315.         {
  2316.           warning ("`%s' attribute directive ignored",
  2317.                IDENTIFIER_POINTER (yyvsp[-7].ttype));
  2318.           yyval.ttype = yyvsp[-7].ttype;
  2319.         }
  2320.       else
  2321.         yyval.ttype = tree_cons (yyvsp[-7].ttype,
  2322.                 tree_cons (yyvsp[-5].ttype,
  2323.                        tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE),
  2324.                        NULL_TREE),
  2325.                 NULL_TREE); ;
  2326.     break;}
  2327. case 160:
  2328. #line 951 "c-parse.y"
  2329. { really_start_incremental_init (NULL_TREE);
  2330.           /* Note that the call to clear_momentary
  2331.              is in process_init_element.  */
  2332.           push_momentary (); ;
  2333.     break;}
  2334. case 161:
  2335. #line 956 "c-parse.y"
  2336. { yyval.ttype = pop_init_level (0);
  2337.           if (yyval.ttype == error_mark_node)
  2338.             pop_momentary ();
  2339.           else
  2340.             pop_momentary_nofree (); ;
  2341.     break;}
  2342. case 162:
  2343. #line 963 "c-parse.y"
  2344. { yyval.ttype = error_mark_node; ;
  2345.     break;}
  2346. case 163:
  2347. #line 969 "c-parse.y"
  2348. { if (pedantic)
  2349.             pedwarn ("ANSI C forbids empty initializer braces"); ;
  2350.     break;}
  2351. case 167:
  2352. #line 983 "c-parse.y"
  2353. { process_init_element (yyvsp[0].ttype); ;
  2354.     break;}
  2355. case 168:
  2356. #line 985 "c-parse.y"
  2357. { push_init_level (0); ;
  2358.     break;}
  2359. case 169:
  2360. #line 987 "c-parse.y"
  2361. { process_init_element (pop_init_level (0)); ;
  2362.     break;}
  2363. case 171:
  2364. #line 993 "c-parse.y"
  2365. { set_init_index (yyvsp[-4].ttype, yyvsp[-2].ttype); ;
  2366.     break;}
  2367. case 173:
  2368. #line 996 "c-parse.y"
  2369. { set_init_index (yyvsp[-2].ttype, NULL_TREE); ;
  2370.     break;}
  2371. case 175:
  2372. #line 999 "c-parse.y"
  2373. { set_init_label (yyvsp[-1].ttype); ;
  2374.     break;}
  2375. case 177:
  2376. #line 1002 "c-parse.y"
  2377. { set_init_label (yyvsp[-1].ttype); ;
  2378.     break;}
  2379. case 179:
  2380. #line 1008 "c-parse.y"
  2381. { push_c_function_context ();
  2382.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2383.             {
  2384.               pop_c_function_context ();
  2385.               YYERROR1;
  2386.             }
  2387.           reinit_parse_for_function ();
  2388.           store_parm_decls (); ;
  2389.     break;}
  2390. case 180:
  2391. #line 1023 "c-parse.y"
  2392. { finish_function (1);
  2393.           pop_c_function_context (); ;
  2394.     break;}
  2395. case 181:
  2396. #line 1029 "c-parse.y"
  2397. { push_c_function_context ();
  2398.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2399.             {
  2400.               pop_c_function_context ();
  2401.               YYERROR1;
  2402.             }
  2403.           reinit_parse_for_function ();
  2404.           store_parm_decls (); ;
  2405.     break;}
  2406. case 182:
  2407. #line 1044 "c-parse.y"
  2408. { finish_function (1);
  2409.           pop_c_function_context (); ;
  2410.     break;}
  2411. case 185:
  2412. #line 1060 "c-parse.y"
  2413. { yyval.ttype = yyvsp[-1].ttype; ;
  2414.     break;}
  2415. case 186:
  2416. #line 1062 "c-parse.y"
  2417. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2418.     break;}
  2419. case 187:
  2420. #line 1067 "c-parse.y"
  2421. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2422.     break;}
  2423. case 188:
  2424. #line 1069 "c-parse.y"
  2425. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2426.     break;}
  2427. case 189:
  2428. #line 1071 "c-parse.y"
  2429. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2430.     break;}
  2431. case 191:
  2432. #line 1082 "c-parse.y"
  2433. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2434.     break;}
  2435. case 192:
  2436. #line 1087 "c-parse.y"
  2437. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2438.     break;}
  2439. case 193:
  2440. #line 1089 "c-parse.y"
  2441. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2442.     break;}
  2443. case 194:
  2444. #line 1091 "c-parse.y"
  2445. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2446.     break;}
  2447. case 196:
  2448. #line 1100 "c-parse.y"
  2449. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2450.     break;}
  2451. case 197:
  2452. #line 1105 "c-parse.y"
  2453. { yyval.ttype = yyvsp[-1].ttype; ;
  2454.     break;}
  2455. case 198:
  2456. #line 1107 "c-parse.y"
  2457. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2458.     break;}
  2459. case 199:
  2460. #line 1109 "c-parse.y"
  2461. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2462.     break;}
  2463. case 200:
  2464. #line 1111 "c-parse.y"
  2465. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2466.     break;}
  2467. case 202:
  2468. #line 1117 "c-parse.y"
  2469. { yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
  2470.           /* Start scope of tag before parsing components.  */
  2471.         ;
  2472.     break;}
  2473. case 203:
  2474. #line 1121 "c-parse.y"
  2475. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype);
  2476.           /* Really define the structure.  */
  2477.         ;
  2478.     break;}
  2479. case 204:
  2480. #line 1125 "c-parse.y"
  2481. { yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
  2482.                       yyvsp[-1].ttype); ;
  2483.     break;}
  2484. case 205:
  2485. #line 1128 "c-parse.y"
  2486. { yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
  2487.     break;}
  2488. case 206:
  2489. #line 1130 "c-parse.y"
  2490. { yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
  2491.     break;}
  2492. case 207:
  2493. #line 1132 "c-parse.y"
  2494. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  2495.     break;}
  2496. case 208:
  2497. #line 1134 "c-parse.y"
  2498. { yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
  2499.                       yyvsp[-1].ttype); ;
  2500.     break;}
  2501. case 209:
  2502. #line 1137 "c-parse.y"
  2503. { yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
  2504.     break;}
  2505. case 210:
  2506. #line 1139 "c-parse.y"
  2507. { yyvsp[0].itype = suspend_momentary ();
  2508.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  2509.     break;}
  2510. case 211:
  2511. #line 1142 "c-parse.y"
  2512. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  2513.           resume_momentary (yyvsp[-4].itype); ;
  2514.     break;}
  2515. case 212:
  2516. #line 1145 "c-parse.y"
  2517. { yyvsp[0].itype = suspend_momentary ();
  2518.           yyval.ttype = start_enum (NULL_TREE); ;
  2519.     break;}
  2520. case 213:
  2521. #line 1148 "c-parse.y"
  2522. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  2523.           resume_momentary (yyvsp[-4].itype); ;
  2524.     break;}
  2525. case 214:
  2526. #line 1151 "c-parse.y"
  2527. { yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
  2528.     break;}
  2529. case 218:
  2530. #line 1162 "c-parse.y"
  2531. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  2532.     break;}
  2533. case 219:
  2534. #line 1167 "c-parse.y"
  2535. { yyval.ttype = yyvsp[0].ttype; ;
  2536.     break;}
  2537. case 220:
  2538. #line 1169 "c-parse.y"
  2539. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  2540.           pedwarn ("no semicolon at end of struct or union"); ;
  2541.     break;}
  2542. case 221:
  2543. #line 1174 "c-parse.y"
  2544. { yyval.ttype = NULL_TREE; ;
  2545.     break;}
  2546. case 222:
  2547. #line 1176 "c-parse.y"
  2548. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  2549.     break;}
  2550. case 223:
  2551. #line 1178 "c-parse.y"
  2552. { if (pedantic)
  2553.             pedwarn ("extra semicolon in struct or union specified"); ;
  2554.     break;}
  2555. case 224:
  2556. #line 1193 "c-parse.y"
  2557. { yyval.ttype = yyvsp[0].ttype;
  2558.           current_declspecs = TREE_VALUE (declspec_stack);
  2559.           declspec_stack = TREE_CHAIN (declspec_stack);
  2560.           resume_momentary (yyvsp[-1].itype); ;
  2561.     break;}
  2562. case 225:
  2563. #line 1198 "c-parse.y"
  2564. { if (pedantic)
  2565.             pedwarn ("ANSI C forbids member declarations with no members");
  2566.           shadow_tag(yyvsp[0].ttype);
  2567.           yyval.ttype = NULL_TREE; ;
  2568.     break;}
  2569. case 226:
  2570. #line 1203 "c-parse.y"
  2571. { yyval.ttype = yyvsp[0].ttype;
  2572.           current_declspecs = TREE_VALUE (declspec_stack);
  2573.           declspec_stack = TREE_CHAIN (declspec_stack);
  2574.           resume_momentary (yyvsp[-1].itype); ;
  2575.     break;}
  2576. case 227:
  2577. #line 1208 "c-parse.y"
  2578. { if (pedantic)
  2579.             pedwarn ("ANSI C forbids member declarations with no members");
  2580.           shadow_tag(yyvsp[0].ttype);
  2581.           yyval.ttype = NULL_TREE; ;
  2582.     break;}
  2583. case 228:
  2584. #line 1213 "c-parse.y"
  2585. { yyval.ttype = NULL_TREE; ;
  2586.     break;}
  2587. case 230:
  2588. #line 1219 "c-parse.y"
  2589. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2590.     break;}
  2591. case 231:
  2592. #line 1224 "c-parse.y"
  2593. { yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
  2594.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2595.     break;}
  2596. case 232:
  2597. #line 1228 "c-parse.y"
  2598. { yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
  2599.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2600.     break;}
  2601. case 233:
  2602. #line 1231 "c-parse.y"
  2603. { yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  2604.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2605.     break;}
  2606. case 235:
  2607. #line 1243 "c-parse.y"
  2608. { yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2609.     break;}
  2610. case 236:
  2611. #line 1249 "c-parse.y"
  2612. { yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
  2613.     break;}
  2614. case 237:
  2615. #line 1251 "c-parse.y"
  2616. { yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2617.     break;}
  2618. case 238:
  2619. #line 1256 "c-parse.y"
  2620. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2621.     break;}
  2622. case 239:
  2623. #line 1258 "c-parse.y"
  2624. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2625.     break;}
  2626. case 240:
  2627. #line 1263 "c-parse.y"
  2628. { yyval.ttype = NULL_TREE; ;
  2629.     break;}
  2630. case 242:
  2631. #line 1269 "c-parse.y"
  2632. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2633.     break;}
  2634. case 243:
  2635. #line 1271 "c-parse.y"
  2636. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2637.     break;}
  2638. case 244:
  2639. #line 1276 "c-parse.y"
  2640. { yyval.ttype = NULL_TREE; ;
  2641.     break;}
  2642. case 245:
  2643. #line 1278 "c-parse.y"
  2644. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2645.     break;}
  2646. case 246:
  2647. #line 1283 "c-parse.y"
  2648. { yyval.ttype = yyvsp[-1].ttype; ;
  2649.     break;}
  2650. case 247:
  2651. #line 1286 "c-parse.y"
  2652. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2653.     break;}
  2654. case 248:
  2655. #line 1288 "c-parse.y"
  2656. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  2657.     break;}
  2658. case 249:
  2659. #line 1290 "c-parse.y"
  2660. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2661.     break;}
  2662. case 250:
  2663. #line 1292 "c-parse.y"
  2664. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2665.     break;}
  2666. case 251:
  2667. #line 1294 "c-parse.y"
  2668. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2669.     break;}
  2670. case 252:
  2671. #line 1296 "c-parse.y"
  2672. { yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2673.     break;}
  2674. case 253:
  2675. #line 1298 "c-parse.y"
  2676. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  2677.     break;}
  2678. case 254:
  2679. #line 1300 "c-parse.y"
  2680. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  2681.     break;}
  2682. case 261:
  2683. #line 1322 "c-parse.y"
  2684. { emit_line_note (input_filename, lineno);
  2685.           pushlevel (0);
  2686.           clear_last_expr ();
  2687.           push_momentary ();
  2688.           expand_start_bindings (0);
  2689.         ;
  2690.     break;}
  2691. case 263:
  2692. #line 1335 "c-parse.y"
  2693. { if (pedantic)
  2694.             pedwarn ("ANSI C forbids label declarations"); ;
  2695.     break;}
  2696. case 266:
  2697. #line 1346 "c-parse.y"
  2698. { tree link;
  2699.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  2700.             {
  2701.               tree label = shadow_label (TREE_VALUE (link));
  2702.               C_DECLARED_LABEL_FLAG (label) = 1;
  2703.               declare_nonlocal_label (label);
  2704.             }
  2705.         ;
  2706.     break;}
  2707. case 267:
  2708. #line 1360 "c-parse.y"
  2709. {;
  2710.     break;}
  2711. case 269:
  2712. #line 1365 "c-parse.y"
  2713. { yyval.ttype = convert (void_type_node, integer_zero_node); ;
  2714.     break;}
  2715. case 270:
  2716. #line 1367 "c-parse.y"
  2717. { emit_line_note (input_filename, lineno);
  2718.           expand_end_bindings (getdecls (), 1, 0);
  2719.           yyval.ttype = poplevel (1, 1, 0);
  2720.           pop_momentary (); ;
  2721.     break;}
  2722. case 271:
  2723. #line 1372 "c-parse.y"
  2724. { emit_line_note (input_filename, lineno);
  2725.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2726.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2727.           pop_momentary (); ;
  2728.     break;}
  2729. case 272:
  2730. #line 1377 "c-parse.y"
  2731. { emit_line_note (input_filename, lineno);
  2732.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2733.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2734.           pop_momentary (); ;
  2735.     break;}
  2736. case 275:
  2737. #line 1394 "c-parse.y"
  2738. { emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2739.           expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
  2740.           yyval.itype = stmt_count;
  2741.           if_stmt_file = yyvsp[-5].filename;
  2742.           if_stmt_line = yyvsp[-4].lineno;
  2743.           position_after_white_space (); ;
  2744.     break;}
  2745. case 276:
  2746. #line 1407 "c-parse.y"
  2747. { stmt_count++;
  2748.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2749.           /* See comment in `while' alternative, above.  */
  2750.           emit_nop ();
  2751.           expand_start_loop_continue_elsewhere (1);
  2752.           position_after_white_space (); ;
  2753.     break;}
  2754. case 277:
  2755. #line 1414 "c-parse.y"
  2756. { expand_loop_continue_here (); ;
  2757.     break;}
  2758. case 278:
  2759. #line 1418 "c-parse.y"
  2760. { yyval.filename = input_filename; ;
  2761.     break;}
  2762. case 279:
  2763. #line 1422 "c-parse.y"
  2764. { yyval.lineno = lineno; ;
  2765.     break;}
  2766. case 280:
  2767. #line 1427 "c-parse.y"
  2768. { ;
  2769.     break;}
  2770. case 281:
  2771. #line 1432 "c-parse.y"
  2772. { ;
  2773.     break;}
  2774. case 282:
  2775. #line 1437 "c-parse.y"
  2776. { ;
  2777.     break;}
  2778. case 284:
  2779. #line 1443 "c-parse.y"
  2780. { int next;
  2781.           position_after_white_space ();
  2782.           next = getc (finput);
  2783.           ungetc (next, finput);
  2784.           if (pedantic && next == '}')
  2785.             pedwarn ("ANSI C forbids label at end of compound statement");
  2786.         ;
  2787.     break;}
  2788. case 285:
  2789. #line 1455 "c-parse.y"
  2790. { stmt_count++; ;
  2791.     break;}
  2792. case 287:
  2793. #line 1458 "c-parse.y"
  2794. { stmt_count++;
  2795.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2796. /* It appears that this should not be done--that a non-lvalue array
  2797.    shouldn't get an error if the value isn't used.
  2798.    Section 3.2.2.1 says that an array lvalue gets converted to a pointer
  2799.    if it appears as a top-level expression,
  2800.    but says nothing about non-lvalue arrays.  */
  2801. #if 0
  2802.           /* Call default_conversion to get an error
  2803.              on referring to a register array if pedantic.  */
  2804.           if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
  2805.               || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
  2806.             yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
  2807. #endif
  2808.           iterator_expand (yyvsp[-1].ttype);
  2809.           clear_momentary (); ;
  2810.     break;}
  2811. case 288:
  2812. #line 1475 "c-parse.y"
  2813. { expand_start_else ();
  2814.           yyvsp[-1].itype = stmt_count;
  2815.           position_after_white_space (); ;
  2816.     break;}
  2817. case 289:
  2818. #line 1479 "c-parse.y"
  2819. { expand_end_cond ();
  2820.           if (extra_warnings && stmt_count == yyvsp[-3].itype)
  2821.             warning ("empty body in an else-statement"); ;
  2822.     break;}
  2823. case 290:
  2824. #line 1483 "c-parse.y"
  2825. { expand_end_cond ();
  2826.           /* This warning is here instead of in simple_if, because we
  2827.              do not want a warning if an empty if is followed by an
  2828.              else statement.  */
  2829.           if (extra_warnings && stmt_count == yyvsp[0].itype)
  2830.             warning_with_file_and_line (if_stmt_file, if_stmt_line,
  2831.                         "empty body in an if-statement"); ;
  2832.     break;}
  2833. case 291:
  2834. #line 1494 "c-parse.y"
  2835. { expand_end_cond (); ;
  2836.     break;}
  2837. case 292:
  2838. #line 1496 "c-parse.y"
  2839. { stmt_count++;
  2840.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2841.           /* The emit_nop used to come before emit_line_note,
  2842.              but that made the nop seem like part of the preceding line.
  2843.              And that was confusing when the preceding line was
  2844.              inside of an if statement and was not really executed.
  2845.              I think it ought to work to put the nop after the line number.
  2846.              We will see.  --rms, July 15, 1991.  */
  2847.           emit_nop (); ;
  2848.     break;}
  2849. case 293:
  2850. #line 1506 "c-parse.y"
  2851. { /* Don't start the loop till we have succeeded
  2852.              in parsing the end test.  This is to make sure
  2853.              that we end every loop we start.  */
  2854.           expand_start_loop (1);
  2855.           emit_line_note (input_filename, lineno);
  2856.           expand_exit_loop_if_false (NULL_PTR,
  2857.                          truthvalue_conversion (yyvsp[-1].ttype));
  2858.           position_after_white_space (); ;
  2859.     break;}
  2860. case 294:
  2861. #line 1515 "c-parse.y"
  2862. { expand_end_loop (); ;
  2863.     break;}
  2864. case 295:
  2865. #line 1518 "c-parse.y"
  2866. { emit_line_note (input_filename, lineno);
  2867.           expand_exit_loop_if_false (NULL_PTR,
  2868.                          truthvalue_conversion (yyvsp[-2].ttype));
  2869.           expand_end_loop ();
  2870.           clear_momentary (); ;
  2871.     break;}
  2872. case 296:
  2873. #line 1525 "c-parse.y"
  2874. { expand_end_loop ();
  2875.           clear_momentary (); ;
  2876.     break;}
  2877. case 297:
  2878. #line 1529 "c-parse.y"
  2879. { stmt_count++;
  2880.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2881.           /* See comment in `while' alternative, above.  */
  2882.           emit_nop ();
  2883.           if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
  2884.           /* Next step is to call expand_start_loop_continue_elsewhere,
  2885.              but wait till after we parse the entire for (...).
  2886.              Otherwise, invalid input might cause us to call that
  2887.              fn without calling expand_end_loop.  */
  2888.         ;
  2889.     break;}
  2890. case 298:
  2891. #line 1541 "c-parse.y"
  2892. { yyvsp[0].lineno = lineno;
  2893.           yyval.filename = input_filename; ;
  2894.     break;}
  2895. case 299:
  2896. #line 1544 "c-parse.y"
  2897.           /* Start the loop.  Doing this after parsing
  2898.              all the expressions ensures we will end the loop.  */
  2899.           expand_start_loop_continue_elsewhere (1);
  2900.           /* Emit the end-test, with a line number.  */
  2901.           emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
  2902.           if (yyvsp[-4].ttype)
  2903.             expand_exit_loop_if_false (NULL_PTR,
  2904.                            truthvalue_conversion (yyvsp[-4].ttype));
  2905.           /* Don't let the tree nodes for $9 be discarded by
  2906.              clear_momentary during the parsing of the next stmt.  */
  2907.           push_momentary ();
  2908.           yyvsp[-3].lineno = lineno;
  2909.           yyvsp[-2].filename = input_filename;
  2910.           position_after_white_space (); ;
  2911.     break;}
  2912. case 300:
  2913. #line 1560 "c-parse.y"
  2914. { /* Emit the increment expression, with a line number.  */
  2915.           emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
  2916.           expand_loop_continue_here ();
  2917.           if (yyvsp[-3].ttype)
  2918.             c_expand_expr_stmt (yyvsp[-3].ttype);
  2919.           pop_momentary ();
  2920.           expand_end_loop (); ;
  2921.     break;}
  2922. case 301:
  2923. #line 1568 "c-parse.y"
  2924. { stmt_count++;
  2925.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2926.           c_expand_start_case (yyvsp[-1].ttype);
  2927.           /* Don't let the tree nodes for $3 be discarded by
  2928.              clear_momentary during the parsing of the next stmt.  */
  2929.           push_momentary ();
  2930.           position_after_white_space (); ;
  2931.     break;}
  2932. case 302:
  2933. #line 1576 "c-parse.y"
  2934. { expand_end_case (yyvsp[-3].ttype);
  2935.           pop_momentary (); ;
  2936.     break;}
  2937. case 303:
  2938. #line 1579 "c-parse.y"
  2939. { stmt_count++;
  2940.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2941.           if ( ! expand_exit_something ())
  2942.             error ("break statement not within loop or switch"); ;
  2943.     break;}
  2944. case 304:
  2945. #line 1584 "c-parse.y"
  2946. { stmt_count++;
  2947.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2948.           if (! expand_continue_loop (NULL_PTR))
  2949.             error ("continue statement not within a loop"); ;
  2950.     break;}
  2951. case 305:
  2952. #line 1589 "c-parse.y"
  2953. { stmt_count++;
  2954.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2955.           c_expand_return (NULL_TREE); ;
  2956.     break;}
  2957. case 306:
  2958. #line 1593 "c-parse.y"
  2959. { stmt_count++;
  2960.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  2961.           c_expand_return (yyvsp[-1].ttype); ;
  2962.     break;}
  2963. case 307:
  2964. #line 1597 "c-parse.y"
  2965. { stmt_count++;
  2966.           emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
  2967.           STRIP_NOPS (yyvsp[-2].ttype);
  2968.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  2969.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  2970.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  2971.             expand_asm (yyvsp[-2].ttype);
  2972.           else
  2973.             error ("argument of `asm' is not a constant string"); ;
  2974.     break;}
  2975. case 308:
  2976. #line 1608 "c-parse.y"
  2977. { stmt_count++;
  2978.           emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
  2979.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  2980.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  2981.                      input_filename, lineno); ;
  2982.     break;}
  2983. case 309:
  2984. #line 1615 "c-parse.y"
  2985. { stmt_count++;
  2986.           emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
  2987.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  2988.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  2989.                      input_filename, lineno); ;
  2990.     break;}
  2991. case 310:
  2992. #line 1623 "c-parse.y"
  2993. { stmt_count++;
  2994.           emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
  2995.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  2996.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  2997.                      input_filename, lineno); ;
  2998.     break;}
  2999. case 311:
  3000. #line 1629 "c-parse.y"
  3001. { tree decl;
  3002.           stmt_count++;
  3003.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3004.           decl = lookup_label (yyvsp[-1].ttype);
  3005.           if (decl != 0)
  3006.             {
  3007.               TREE_USED (decl) = 1;
  3008.               expand_goto (decl);
  3009.             }
  3010.         ;
  3011.     break;}
  3012. case 312:
  3013. #line 1640 "c-parse.y"
  3014. { stmt_count++;
  3015.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3016.           expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
  3017.     break;}
  3018. case 315:
  3019. #line 1653 "c-parse.y"
  3020. {
  3021.         /* The value returned by this action is  */
  3022.         /*      1 if everything is OK */ 
  3023.         /*      0 in case of error or already bound iterator */
  3024.  
  3025.         yyval.itype = 0;
  3026.         if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
  3027.           error ("invalid `for (ITERATOR)' syntax");
  3028.         else if (! ITERATOR_P (yyvsp[-1].ttype))
  3029.           error ("`%s' is not an iterator",
  3030.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3031.         else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
  3032.           error ("`for (%s)' inside expansion of same iterator",
  3033.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3034.         else
  3035.           {
  3036.         yyval.itype = 1;
  3037.         iterator_for_loop_start (yyvsp[-1].ttype);
  3038.           }
  3039.       ;
  3040.     break;}
  3041. case 316:
  3042. #line 1674 "c-parse.y"
  3043. {
  3044.         if (yyvsp[-1].itype)
  3045.           iterator_for_loop_end (yyvsp[-3].ttype);
  3046.       ;
  3047.     break;}
  3048. case 317:
  3049. #line 1706 "c-parse.y"
  3050. { register tree value = check_case_value (yyvsp[-1].ttype);
  3051.           register tree label
  3052.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3053.  
  3054.           stmt_count++;
  3055.  
  3056.           if (value != error_mark_node)
  3057.             {
  3058.               tree duplicate;
  3059.               int success = pushcase (value, convert_and_check,
  3060.                           label, &duplicate);
  3061.               if (success == 1)
  3062.             error ("case label not within a switch statement");
  3063.               else if (success == 2)
  3064.             {
  3065.               error ("duplicate case value");
  3066.               error_with_decl (duplicate, "this is the first entry for that value");
  3067.             }
  3068.               else if (success == 3)
  3069.             warning ("case value out of range");
  3070.               else if (success == 5)
  3071.             error ("case label within scope of cleanup or variable array");
  3072.             }
  3073.           position_after_white_space (); ;
  3074.     break;}
  3075. case 318:
  3076. #line 1731 "c-parse.y"
  3077. { register tree value1 = check_case_value (yyvsp[-3].ttype);
  3078.           register tree value2 = check_case_value (yyvsp[-1].ttype);
  3079.           register tree label
  3080.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3081.  
  3082.           stmt_count++;
  3083.  
  3084.           if (value1 != error_mark_node && value2 != error_mark_node)
  3085.             {
  3086.               tree duplicate;
  3087.               int success = pushcase_range (value1, value2,
  3088.                             convert_and_check, label,
  3089.                             &duplicate);
  3090.               if (success == 1)
  3091.             error ("case label not within a switch statement");
  3092.               else if (success == 2)
  3093.             {
  3094.               error ("duplicate case value");
  3095.               error_with_decl (duplicate, "this is the first entry for that value");
  3096.             }
  3097.               else if (success == 3)
  3098.             warning ("case value out of range");
  3099.               else if (success == 4)
  3100.             warning ("empty case range");
  3101.               else if (success == 5)
  3102.             error ("case label within scope of cleanup or variable array");
  3103.             }
  3104.           position_after_white_space (); ;
  3105.     break;}
  3106. case 319:
  3107. #line 1760 "c-parse.y"
  3108. {
  3109.           tree duplicate;
  3110.           register tree label
  3111.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3112.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  3113.           stmt_count++;
  3114.           if (success == 1)
  3115.             error ("default label not within a switch statement");
  3116.           else if (success == 2)
  3117.             {
  3118.               error ("multiple default labels in one switch");
  3119.               error_with_decl (duplicate, "this is the first default label");
  3120.             }
  3121.           position_after_white_space (); ;
  3122.     break;}
  3123. case 320:
  3124. #line 1775 "c-parse.y"
  3125. { tree label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  3126.           stmt_count++;
  3127.           emit_nop ();
  3128.           if (label)
  3129.             expand_label (label);
  3130.           position_after_white_space (); ;
  3131.     break;}
  3132. case 321:
  3133. #line 1787 "c-parse.y"
  3134. { emit_line_note (input_filename, lineno);
  3135.           yyval.ttype = NULL_TREE; ;
  3136.     break;}
  3137. case 322:
  3138. #line 1790 "c-parse.y"
  3139. { emit_line_note (input_filename, lineno); ;
  3140.     break;}
  3141. case 323:
  3142. #line 1795 "c-parse.y"
  3143. { yyval.ttype = NULL_TREE; ;
  3144.     break;}
  3145. case 325:
  3146. #line 1802 "c-parse.y"
  3147. { yyval.ttype = NULL_TREE; ;
  3148.     break;}
  3149. case 328:
  3150. #line 1809 "c-parse.y"
  3151. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3152.     break;}
  3153. case 329:
  3154. #line 1814 "c-parse.y"
  3155. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3156.     break;}
  3157. case 330:
  3158. #line 1819 "c-parse.y"
  3159. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
  3160.     break;}
  3161. case 331:
  3162. #line 1821 "c-parse.y"
  3163. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
  3164.     break;}
  3165. case 332:
  3166. #line 1827 "c-parse.y"
  3167. { pushlevel (0);
  3168.           clear_parm_order ();
  3169.           declare_parm_level (0); ;
  3170.     break;}
  3171. case 333:
  3172. #line 1831 "c-parse.y"
  3173. { yyval.ttype = yyvsp[0].ttype;
  3174.           parmlist_tags_warning ();
  3175.           poplevel (0, 0, 0); ;
  3176.     break;}
  3177. case 335:
  3178. #line 1839 "c-parse.y"
  3179. { tree parm;
  3180.           if (pedantic)
  3181.             pedwarn ("ANSI C forbids forward parameter declarations");
  3182.           /* Mark the forward decls as such.  */
  3183.           for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
  3184.             TREE_ASM_WRITTEN (parm) = 1;
  3185.           clear_parm_order (); ;
  3186.     break;}
  3187. case 336:
  3188. #line 1847 "c-parse.y"
  3189. { yyval.ttype = yyvsp[0].ttype; ;
  3190.     break;}
  3191. case 337:
  3192. #line 1849 "c-parse.y"
  3193. { yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
  3194.     break;}
  3195. case 338:
  3196. #line 1855 "c-parse.y"
  3197. { yyval.ttype = get_parm_info (0); ;
  3198.     break;}
  3199. case 339:
  3200. #line 1857 "c-parse.y"
  3201. { yyval.ttype = get_parm_info (0);
  3202.           if (pedantic)
  3203.             pedwarn ("ANSI C requires a named argument before `...'");
  3204.         ;
  3205.     break;}
  3206. case 340:
  3207. #line 1862 "c-parse.y"
  3208. { yyval.ttype = get_parm_info (1); ;
  3209.     break;}
  3210. case 341:
  3211. #line 1864 "c-parse.y"
  3212. { yyval.ttype = get_parm_info (0); ;
  3213.     break;}
  3214. case 342:
  3215. #line 1869 "c-parse.y"
  3216. { push_parm_decl (yyvsp[0].ttype); ;
  3217.     break;}
  3218. case 343:
  3219. #line 1871 "c-parse.y"
  3220. { push_parm_decl (yyvsp[0].ttype); ;
  3221.     break;}
  3222. case 344:
  3223. #line 1878 "c-parse.y"
  3224. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3225.     break;}
  3226. case 345:
  3227. #line 1880 "c-parse.y"
  3228. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3229.     break;}
  3230. case 346:
  3231. #line 1882 "c-parse.y"
  3232. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3233.     break;}
  3234. case 347:
  3235. #line 1884 "c-parse.y"
  3236. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3237.     break;}
  3238. case 348:
  3239. #line 1886 "c-parse.y"
  3240. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3241.     break;}
  3242. case 349:
  3243. #line 1893 "c-parse.y"
  3244. { pushlevel (0);
  3245.           clear_parm_order ();
  3246.           declare_parm_level (1); ;
  3247.     break;}
  3248. case 350:
  3249. #line 1897 "c-parse.y"
  3250. { yyval.ttype = yyvsp[0].ttype;
  3251.           parmlist_tags_warning ();
  3252.           poplevel (0, 0, 0); ;
  3253.     break;}
  3254. case 352:
  3255. #line 1905 "c-parse.y"
  3256. { tree t;
  3257.           for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
  3258.             if (TREE_VALUE (t) == NULL_TREE)
  3259.               error ("`...' in old-style identifier list");
  3260.           yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
  3261.     break;}
  3262. case 353:
  3263. #line 1915 "c-parse.y"
  3264. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3265.     break;}
  3266. case 354:
  3267. #line 1917 "c-parse.y"
  3268. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3269.     break;}
  3270. case 355:
  3271. #line 1923 "c-parse.y"
  3272. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3273.     break;}
  3274. case 356:
  3275. #line 1925 "c-parse.y"
  3276. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3277.     break;}
  3278. }
  3279.    /* the action file gets copied in in place of this dollarsign */
  3280. #line 457 "/usr/local/Install/supported/gnu/bison/sparc-sun-sunos4.1/lib/bison.simple"
  3281.  
  3282.   yyvsp -= yylen;
  3283.   yyssp -= yylen;
  3284. #ifdef YYLSP_NEEDED
  3285.   yylsp -= yylen;
  3286. #endif
  3287.  
  3288. #if YYDEBUG != 0
  3289.   if (yydebug)
  3290.     {
  3291.       short *ssp1 = yyss - 1;
  3292.       fprintf (stderr, "state stack now");
  3293.       while (ssp1 != yyssp)
  3294.     fprintf (stderr, " %d", *++ssp1);
  3295.       fprintf (stderr, "\n");
  3296.     }
  3297. #endif
  3298.  
  3299.   *++yyvsp = yyval;
  3300.  
  3301. #ifdef YYLSP_NEEDED
  3302.   yylsp++;
  3303.   if (yylen == 0)
  3304.     {
  3305.       yylsp->first_line = yylloc.first_line;
  3306.       yylsp->first_column = yylloc.first_column;
  3307.       yylsp->last_line = (yylsp-1)->last_line;
  3308.       yylsp->last_column = (yylsp-1)->last_column;
  3309.       yylsp->text = 0;
  3310.     }
  3311.   else
  3312.     {
  3313.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  3314.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  3315.     }
  3316. #endif
  3317.  
  3318.   /* Now "shift" the result of the reduction.
  3319.      Determine what state that goes to,
  3320.      based on the state we popped back to
  3321.      and the rule number reduced by.  */
  3322.  
  3323.   yyn = yyr1[yyn];
  3324.  
  3325.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  3326.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  3327.     yystate = yytable[yystate];
  3328.   else
  3329.     yystate = yydefgoto[yyn - YYNTBASE];
  3330.  
  3331.   goto yynewstate;
  3332.  
  3333. yyerrlab:   /* here on detecting error */
  3334.  
  3335.   if (! yyerrstatus)
  3336.     /* If not already recovering from an error, report this error.  */
  3337.     {
  3338.       ++yynerrs;
  3339.  
  3340. #ifdef YYERROR_VERBOSE
  3341.       yyn = yypact[yystate];
  3342.  
  3343.       if (yyn > YYFLAG && yyn < YYLAST)
  3344.     {
  3345.       int size = 0;
  3346.       char *msg;
  3347.       int x, count;
  3348.  
  3349.       count = 0;
  3350.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  3351.       for (x = (yyn < 0 ? -yyn : 0);
  3352.            x < (sizeof(yytname) / sizeof(char *)); x++)
  3353.         if (yycheck[x + yyn] == x)
  3354.           size += strlen(yytname[x]) + 15, count++;
  3355.       msg = (char *) malloc(size + 15);
  3356.       if (msg != 0)
  3357.         {
  3358.           strcpy(msg, "parse error");
  3359.  
  3360.           if (count < 5)
  3361.         {
  3362.           count = 0;
  3363.           for (x = (yyn < 0 ? -yyn : 0);
  3364.                x < (sizeof(yytname) / sizeof(char *)); x++)
  3365.             if (yycheck[x + yyn] == x)
  3366.               {
  3367.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  3368.             strcat(msg, yytname[x]);
  3369.             strcat(msg, "'");
  3370.             count++;
  3371.               }
  3372.         }
  3373.           yyerror(msg);
  3374.           free(msg);
  3375.         }
  3376.       else
  3377.         yyerror ("parse error; also virtual memory exceeded");
  3378.     }
  3379.       else
  3380. #endif /* YYERROR_VERBOSE */
  3381.     yyerror("parse error");
  3382.     }
  3383.  
  3384.   goto yyerrlab1;
  3385. yyerrlab1:   /* here on error raised explicitly by an action */
  3386.  
  3387.   if (yyerrstatus == 3)
  3388.     {
  3389.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  3390.  
  3391.       /* return failure if at end of input */
  3392.       if (yychar == YYEOF)
  3393.     YYABORT;
  3394.  
  3395. #if YYDEBUG != 0
  3396.       if (yydebug)
  3397.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  3398. #endif
  3399.  
  3400.       yychar = YYEMPTY;
  3401.     }
  3402.  
  3403.   /* Else will try to reuse lookahead token
  3404.      after shifting the error token.  */
  3405.  
  3406.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  3407.  
  3408.   goto yyerrhandle;
  3409.  
  3410. yyerrdefault:  /* current state does not do anything special for the error token. */
  3411.  
  3412. #if 0
  3413.   /* This is wrong; only states that explicitly want error tokens
  3414.      should shift them.  */
  3415.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  3416.   if (yyn) goto yydefault;
  3417. #endif
  3418.  
  3419. yyerrpop:   /* pop the current state because it cannot handle the error token */
  3420.  
  3421.   if (yyssp == yyss) YYABORT;
  3422.   yyvsp--;
  3423.   yystate = *--yyssp;
  3424. #ifdef YYLSP_NEEDED
  3425.   yylsp--;
  3426. #endif
  3427.  
  3428. #if YYDEBUG != 0
  3429.   if (yydebug)
  3430.     {
  3431.       short *ssp1 = yyss - 1;
  3432.       fprintf (stderr, "Error: state stack now");
  3433.       while (ssp1 != yyssp)
  3434.     fprintf (stderr, " %d", *++ssp1);
  3435.       fprintf (stderr, "\n");
  3436.     }
  3437. #endif
  3438.  
  3439. yyerrhandle:
  3440.  
  3441.   yyn = yypact[yystate];
  3442.   if (yyn == YYFLAG)
  3443.     goto yyerrdefault;
  3444.  
  3445.   yyn += YYTERROR;
  3446.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  3447.     goto yyerrdefault;
  3448.  
  3449.   yyn = yytable[yyn];
  3450.   if (yyn < 0)
  3451.     {
  3452.       if (yyn == YYFLAG)
  3453.     goto yyerrpop;
  3454.       yyn = -yyn;
  3455.       goto yyreduce;
  3456.     }
  3457.   else if (yyn == 0)
  3458.     goto yyerrpop;
  3459.  
  3460.   if (yyn == YYFINAL)
  3461.     YYACCEPT;
  3462.  
  3463. #if YYDEBUG != 0
  3464.   if (yydebug)
  3465.     fprintf(stderr, "Shifting error token, ");
  3466. #endif
  3467.  
  3468.   *++yyvsp = yylval;
  3469. #ifdef YYLSP_NEEDED
  3470.   *++yylsp = yylloc;
  3471. #endif
  3472.  
  3473.   yystate = yyn;
  3474.   goto yynewstate;
  3475. }
  3476. #line 1928 "c-parse.y"
  3477.  
  3478.